diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 4d8992e..a3737ab 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -43,7 +43,9 @@ jobs: bin/**/*.dll bin/**/*.lib bin/**/*.pdb + doc LICENSE + README.md pack-everything: name: Pack everything into one archive @@ -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/*