Skip to content

Commit

Permalink
fix: fix checkout bug
Browse files Browse the repository at this point in the history
  • Loading branch information
thinkgos committed Jan 30, 2024
1 parent 48e1039 commit a73e280
Showing 1 changed file with 44 additions and 42 deletions.
86 changes: 44 additions & 42 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,48 +24,48 @@ jobs:
os: ubuntu-latest
name: goup-x86_64-unknown-linux-gnu.tar.gz

# - target: x86_64-unknown-linux-musl
# os: ubuntu-latest
# name: goup-x86_64-unknown-linux-musl.tar.gz

# - target: i686-unknown-linux-musl
# os: ubuntu-latest
# name: goup-i686-unknown-linux-musl.tar.gz

# - target: aarch64-unknown-linux-musl
# os: ubuntu-latest
# name: goup-aarch64-unknown-linux-musl.tar.gz

# - target: arm-unknown-linux-musleabihf
# os: ubuntu-latest
# name: goup-arm-unknown-linux-musleabihf.tar.gz

# - target: x86_64-apple-darwin
# os: macOS-11
# name: goup-x86_64-apple-darwin.tar.gz

# - target: aarch64-apple-darwin
# os: macOS-11
# name: goup-aarch64-apple-darwin.tar.gz

# - target: x86_64-pc-windows-msvc
# os: windows-latest
# name: goup-x86_64-pc-windows-msvc.zip
# rustflags: -C target-feature=+crt-static

# - target: i686-pc-windows-msvc
# os: windows-latest
# name: goup-i686-pc-windows-msvc.zip
# rustflags: -C target-feature=+crt-static
# # TODO: bug ring not supported
# # - target: aarch64-pc-windows-msvc
# # os: windows-latest
# # name: goup-aarch64-pc-windows-msvc.zip
# # rustflags: -C target-feature=+crt-static

# - target: x86_64-unknown-freebsd
# os: ubuntu-latest
# name: goup-x86_64-unknown-freebsd.tar.gz
- target: x86_64-unknown-linux-musl
os: ubuntu-latest
name: goup-x86_64-unknown-linux-musl.tar.gz

- target: i686-unknown-linux-musl
os: ubuntu-latest
name: goup-i686-unknown-linux-musl.tar.gz

- target: aarch64-unknown-linux-musl
os: ubuntu-latest
name: goup-aarch64-unknown-linux-musl.tar.gz

- target: arm-unknown-linux-musleabihf
os: ubuntu-latest
name: goup-arm-unknown-linux-musleabihf.tar.gz

- target: x86_64-apple-darwin
os: macOS-11
name: goup-x86_64-apple-darwin.tar.gz

- target: aarch64-apple-darwin
os: macOS-11
name: goup-aarch64-apple-darwin.tar.gz

- target: x86_64-pc-windows-msvc
os: windows-latest
name: goup-x86_64-pc-windows-msvc.zip
rustflags: -C target-feature=+crt-static

- target: i686-pc-windows-msvc
os: windows-latest
name: goup-i686-pc-windows-msvc.zip
rustflags: -C target-feature=+crt-static
# TODO: bug ring not supported
# - target: aarch64-pc-windows-msvc
# os: windows-latest
# name: goup-aarch64-pc-windows-msvc.zip
# rustflags: -C target-feature=+crt-static

- target: x86_64-unknown-freebsd
os: ubuntu-latest
name: goup-x86_64-unknown-freebsd.tar.gz

runs-on: ${{ matrix.os }}
continue-on-error: true
Expand All @@ -74,6 +74,8 @@ jobs:
steps:
- name: Setup | Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0

- name: Setup | Rust
uses: dtolnay/rust-toolchain@master
Expand Down

0 comments on commit a73e280

Please sign in to comment.