File tree 1 file changed +4
-9
lines changed
1 file changed +4
-9
lines changed Original file line number Diff line number Diff line change 51
51
52
52
- name : " Tar up the binaries"
53
53
run : |
54
- tar -C ./mysql_${{ matrix.dbversion }}/built_${{ matrix.dbversion }}_${{ matrix.arch }}/bin/ -czf ./mysql-${{ matrix.dbversion }}-${{ matrix.arch }}.tar.gz .
54
+ MYSQL_VERSION="${{ matrix.dbversion }}"
55
+ # Remove the patch version from the tarball name
56
+ MINOR_MYSQL_VERSION=${MYSQL_VERSION%.*}
57
+ tar -C ./mysql_${{ matrix.dbversion }}/built_${{ matrix.dbversion }}_${{ matrix.arch }}/bin/ -czf ./mysql-${MINOR_MYSQL_VERSION}-${{ matrix.arch }}.tar.gz .
55
58
56
59
- name : " upload mysql-${{ matrix.dbversion }}-${{ matrix.arch }}"
57
60
uses : actions/upload-artifact@v4
89
92
- name : Setup tmate session
90
93
if : ${{ failure() }}
91
94
uses : mxschmitt/action-tmate@v3
92
-
93
- # - name: Upload Release Assets
94
- # env:
95
- # GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
96
- # run: |
97
- # for file in $(find ./artifacts -type f); do
98
- # gh release upload "${{ github.ref }}" "$file" --clobber
99
- # done
You can’t perform that action at this time.
0 commit comments