We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 711789f commit e74f90bCopy full SHA for e74f90b
.github/workflows/build_linux.yml
@@ -42,12 +42,14 @@ jobs:
42
retention-days: 21
43
if-no-files-found: error
44
45
+ - name: zip release artifacts
46
+ if: github.event_name == 'release'
47
+ run:
48
+ tar -czvf release.tar.gz ./bin/Release/net6.0/
49
+
50
- name: Upload to Release
51
uses: softprops/action-gh-release@v2
52
if: startsWith(github.ref, 'refs/tags/')
53
with:
54
files: |
- ./bin/Release/Opc2Aml.dll
- ./bin/Release/Opc2Aml.deps.json
- ./bin/Release/Opc2Aml.pdb
- ./bin/Release/app.config.json
55
+ ./release.tar.gz
0 commit comments