Skip to content

Commit

Permalink
Merge pull request #2 from n8n-io/arm64-support
Browse files Browse the repository at this point in the history
ci: Add arm64 support
  • Loading branch information
valya authored Oct 10, 2024
2 parents c07a97a + e65e67d commit 1f870ae
Showing 1 changed file with 13 additions and 12 deletions.
25 changes: 13 additions & 12 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,19 +3,20 @@ on:
types: [created]

jobs:
release:
name: release ${{ matrix.target }}
runs-on: ubuntu-latest
upload-assets:
strategy:
fail-fast: false
matrix:
target: [x86_64-unknown-linux-musl]
include:
- target: x86_64-unknown-linux-musl
- target: aarch64-unknown-linux-musl
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Compile and release
uses: rust-build/[email protected]
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- uses: actions/checkout@v4
- uses: taiki-e/upload-rust-binary-action@v1
with:
RUSTTARGET: ${{ matrix.target }}
EXTRA_FILES: "LICENSE.md LICENSE_EE.md"
bin: task-runner-launcher
target: ${{ matrix.target }}
zip: all
tar: none
token: ${{ secrets.GITHUB_TOKEN }}
checksum: sha256

0 comments on commit 1f870ae

Please sign in to comment.