Skip to content

Commit

Permalink
Fix upload
Browse files Browse the repository at this point in the history
  • Loading branch information
TheAssassin committed Mar 5, 2024
1 parent e1ac05e commit cf96f0d
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/github-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,14 +48,18 @@ jobs:

- name: Build distribution
run: |
bash distribute/distribute-docker.sh ${{ matrix.target }}
# we use a separate directory called output to "collect" all the build artifacts
# this makes uploading the artifacts a *lot* easier
mkdir output
pushd output
bash ../distribute/distribute-docker.sh ${{ matrix.target }}
- name: Archive built files
uses: actions/upload-artifact@v3
with:
name: output binaries
path: |
/app/output/**
output/*
upload:
name: Create release and upload artifacts
Expand Down

0 comments on commit cf96f0d

Please sign in to comment.