File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -138,6 +138,11 @@ jobs:
138138 else
139139 echo "VERSION=dev" >> $GITHUB_OUTPUT
140140 fi
141+ - name : Create tar.gz archive (Unix)
142+ if : matrix.target && runner.os != 'Windows'
143+ run : |
144+ cd artifacts
145+ tar -cz9f ../${{ matrix.artifact_name }}_${{ steps.version.outputs.VERSION }}.tar.gz *
141146 - name : Create zip archive (Windows)
142147 if : matrix.target && runner.os == 'Windows'
143148 run : |
@@ -148,7 +153,7 @@ jobs:
148153 if : matrix.target && runner.os != 'Windows'
149154 with :
150155 name : ${{ matrix.artifact_name }}_${{ steps.version.outputs.VERSION }}
151- path : artifacts
156+ path : ${{ matrix.artifact_name }}_${{ steps.version.outputs.VERSION }}.tar.gz
152157 - name : Upload artifacts (Windows)
153158 uses : actions/upload-artifact@v4
154159 if : matrix.target && runner.os == 'Windows'
You can’t perform that action at this time.
0 commit comments