We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d279cd7 commit 6486302Copy full SHA for 6486302
1 file changed
.github/workflows/ci.yml
@@ -62,6 +62,9 @@ jobs:
62
steps:
63
- name: Download artifacts
64
uses: actions/download-artifact@v5
65
+ with:
66
+ name: ${{ runner.os }}
67
+ path: artifacts
68
69
- name: Versioning
70
run: |
@@ -73,12 +76,11 @@ jobs:
73
76
74
77
- name: Package
75
78
79
+ cd artifacts
80
ls -Rall
- if [ -d "./Linux/" ]; then
- cd ./Linux/
- tar -czf ../${{ github.event.repository.name }}-${{ env.RELEASE_VERSION }}.tar.gz -T <(\ls -1)
- cd -
81
- fi
+ tar -czf ../${{ github.event.repository.name }}-${{ env.RELEASE_VERSION }}.tar.gz .
82
+ cd ..
83
+ ls -la *.tar.gz
84
85
- name: Release
86
uses: svenstaro/upload-release-action@v2
@@ -87,4 +89,4 @@ jobs:
87
89
file: '*.tar.gz'
88
90
tag: ${{ env.RELEASE_VERSION }}
91
file_glob: true
- overwrite: true
92
+ overwrite: true
0 commit comments