We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent efec586 commit 8b9e787Copy full SHA for 8b9e787
.github/workflows/release.yml
@@ -51,8 +51,11 @@ jobs:
51
- name: Display structure of downloaded files
52
run: ls -R
53
- name: Zip files
54
- run: zip |
55
- zip -r ittapi_build_${{ github.ref_name }} include build-artifacts/build*/**/bin
+ run: |
+ zip -r ittapi_build_${{ github.ref_name }}.zip include && |
56
+ cd build-artifacts && |
57
+ zip -rg ../ittapi_build_${{ github.ref_name }}.zip build*/**/bin && |
58
+ cd -
59
- name: Upload Release Asset
60
id: upload-release-asset
61
uses: actions/upload-release-asset@v1
0 commit comments