From 3c59022eaa599830ffb6b4d5be4f2c06da9241b0 Mon Sep 17 00:00:00 2001 From: Tyler Cook <10459406+cilki@users.noreply.github.com> Date: Fri, 1 Mar 2024 22:39:34 -0600 Subject: [PATCH] ci: update workflow --- .github/workflows/build.yml | 30 +++++++++++++++++------------- 1 file changed, 17 insertions(+), 13 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index b88d2d9..e4a3841 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -3,18 +3,22 @@ on: push: branches: [master] -steps: - - name: Checkout - uses: actions/checkout@v4 +jobs: + build-linux: + name: Build / ${RUNNER_OS} (${RUNNER_ARCH}) + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v4 - - name: Build goldboot image - uses: fossable/goldboot-action@master - with: - config-path: goldboot.json - output-path: image.gb + - name: Build goldboot image + uses: fossable/goldboot-action@master + with: + config-path: goldboot.json + output-path: image.gb - - name: Save image artifact - uses: actions/upload-artifact@v3 - with: - name: my_image.gb - path: image.gb + - name: Save image artifact + uses: actions/upload-artifact@v3 + with: + name: my_image.gb + path: image.gb