Skip to content

Commit e74f90b

Browse files
ci: Compress files and add them to release
1 parent 711789f commit e74f90b

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

.github/workflows/build_linux.yml

+6-4
Original file line numberDiff line numberDiff line change
@@ -42,12 +42,14 @@ jobs:
4242
retention-days: 21
4343
if-no-files-found: error
4444

45+
- name: zip release artifacts
46+
if: github.event_name == 'release'
47+
run:
48+
tar -czvf release.tar.gz ./bin/Release/net6.0/
49+
4550
- name: Upload to Release
4651
uses: softprops/action-gh-release@v2
4752
if: startsWith(github.ref, 'refs/tags/')
4853
with:
4954
files: |
50-
./bin/Release/Opc2Aml.dll
51-
./bin/Release/Opc2Aml.deps.json
52-
./bin/Release/Opc2Aml.pdb
53-
./bin/Release/app.config.json
55+
./release.tar.gz

0 commit comments

Comments
 (0)