Skip to content

Commit

Permalink
ci: update workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
cilki committed Mar 2, 2024
1 parent 7366673 commit 3c59022
Showing 1 changed file with 17 additions and 13 deletions.
30 changes: 17 additions & 13 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 3c59022

Please sign in to comment.