Skip to content

Commit

Permalink
Revert fix of publish-binary
Browse files Browse the repository at this point in the history
  • Loading branch information
elhmn committed Oct 1, 2023
1 parent 1bb9b4d commit f2c0cfc
Showing 1 changed file with 4 additions and 16 deletions.
20 changes: 4 additions & 16 deletions .github/workflows/publish-binary.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,23 +23,13 @@ jobs:
upload-assets:
strategy:
matrix:
include:
- target: aarch64-unknown-linux-gnu
os: ubuntu-latest
- target: aarch64-apple-darwin
os: macos-latest
- target: x86_64-unknown-linux-gnu
os: ubuntu-latest
- target: x86_64-apple-darwin
os: macos-latest
os:
- ubuntu-latest
- macos-latest
- windows-latest
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Install cross-compilation tools
uses: taiki-e/setup-cross-toolchain-action@v1
with:
target: ${{ matrix.target }}
if: startsWith(matrix.os, 'ubuntu')
- uses: taiki-e/upload-rust-binary-action@v1
with:
# (required) Comma-separated list of binary names (non-extension portion of filename) to build and upload.
Expand All @@ -53,7 +43,5 @@ jobs:
# [default value: windows]
# [possible values: all, unix, windows, none]
zip: windows
# (optional) Target triple, default is host triple.
target: ${{ matrix.target }}
# (required) GitHub token for uploading assets to GitHub Releases.
token: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit f2c0cfc

Please sign in to comment.