Skip to content

Commit 4a1b968

Browse files
authored
Fix binaries files upload
1 parent e46a5b4 commit 4a1b968

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/cd.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -120,12 +120,12 @@ jobs:
120120
path: release_linux
121121
- run: |
122122
echo "RELEASE_VERSION=${GITHUB_REF#refs/*/}" >> $GITHUB_ENV
123-
tar -czvf massa_${RELEASE_VERSION}_linux.tar.gz release_linux
124-
tar -czvf massa_${RELEASE_VERSION}_windows.tar.gz release_windows
125-
tar -czvf massa_${RELEASE_VERSION}_macos.tar.gz release_macos
123+
tar -czvf massa_linux.tar.gz release_linux
124+
tar -czvf massa_windows.tar.gz release_windows
125+
tar -czvf massa_macos.tar.gz release_macos
126126
- uses: softprops/action-gh-release@v1
127127
with:
128128
files: |
129-
release_linux.zip
130-
release_darwin.zip
131-
release_windows.zip
129+
massa_linux.tar.gz
130+
massa_macos.tar.gz
131+
massa_windows.tar.gz

0 commit comments

Comments
 (0)