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 abdfbe6 commit 64878c4Copy full SHA for 64878c4
.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
0 commit comments