Skip to content

Commit

Permalink
feat: linux版本使用musl版为默认
Browse files Browse the repository at this point in the history
  • Loading branch information
fy0 committed Oct 18, 2024
1 parent b72875b commit 2445bd1
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/auto-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -697,8 +697,17 @@ jobs:
echo "PROJECT_VERSION_C=${CUR_TIME}-${COMMIT_ID::7}" >> $GITHUB_ENV;
env:
CUR_TIME: ${{ steps.currentTime.outputs.time }}

- name: Get Files
uses: actions/download-artifact@v4
if: matrix.goos == 'linux'
with:
name: sealdice_${{ env.PROJECT_VERSION_C }}_${{ matrix.goos }}_${{ matrix.goarch }}_musl
path: ./temp/

- name: Get Files(!linux)
uses: actions/download-artifact@v4
if: matrix.goos != 'linux'
with:
name: sealdice_${{ env.PROJECT_VERSION_C }}_${{ matrix.goos }}_${{ matrix.goarch }}
path: ./temp/
Expand Down

0 comments on commit 2445bd1

Please sign in to comment.