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