Skip to content

Commit

Permalink
Updated CI build script
Browse files Browse the repository at this point in the history
  • Loading branch information
fri committed Oct 4, 2024
1 parent ac339c0 commit 8aba933
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,10 +36,13 @@ jobs:
asciidoctor -b manpage doc/fcd-view.1.adoc
- name: Package
run: |
mkdir fcd
cp fcd.{sh,fish} fcd/
cp doc/fcd{,-view}.1 fcd/
cp target/${{ matrix.target }}/release/fcd fcd/
mkdir -p fcd/{bin,share/{man/man1,doc/fcd,fcd,licenses/fcd}}
cp target/${{ matrix.target }}/release/fcd fcd/bin/
cp doc/fcd{,-view}.1 fcd/share/man/man1/
cp fcd.{sh,fish} fcd/share/fcd/
cp README.md fcd/share/doc/fcd/
cp CHANGELOG.md fcd/share/doc/fcd/
cp LICENSE fcd/share/licenses/fcd/
tar cvzf fcd-${{ matrix.target }}.tar.gz fcd/
- name: Upload
uses: actions/upload-artifact@v4
Expand Down

0 comments on commit 8aba933

Please sign in to comment.