Skip to content

Commit

Permalink
Packing step 2
Browse files Browse the repository at this point in the history
  • Loading branch information
Xottab-DUTY authored Oct 2, 2024
1 parent 1817670 commit b899a63
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,9 @@ jobs:
bin/**/*.dll
bin/**/*.lib
bin/**/*.pdb
doc
LICENSE
README.md
pack-everything:
name: Pack everything into one archive
Expand All @@ -53,3 +55,14 @@ jobs:
- name: Download everything from previous jobs
uses: actions/download-artifact@v4
- run: ls
- name: Unpack all archives
run: 7z x * -otemp
- run: ls
- name: Pack into one
run: 7z a BugTrap.zip ./temp/*
- run: ls
- name: Upload artifacts
uses: actions/upload-artifact@main
with:
name: BugTrap (github-${{ github.run_number }}).zip
path: temp/*

0 comments on commit b899a63

Please sign in to comment.