Skip to content

Commit

Permalink
Create jwt-cli-arm64.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
felipeg48 authored Oct 4, 2023
1 parent 0c93e21 commit 7de98df
Showing 1 changed file with 39 additions and 0 deletions.
39 changes: 39 additions & 0 deletions .github/workflows/jwt-cli-arm64.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
name: JWT for Linux ARM64

on:
workflow_dispatch:

env:
CARGO_TERM_COLOR: always

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- name: Checkout JWT
uses: actions/checkout@v4
with:
repository: mike-engel/jwt-cli
ref: main
- name: Adding ToolChain
uses: actions-rs/toolchain@v1
with:
toolchain: stable
target: aarch64-unknown-linux-gnu
override: true
- name: Building Release
uses: actions-rs/cargo@v1
with:
use-cross: true
command: build
args: --release --target aarch64-unknown-linux-gnu
- name: Upload release asset
uses: softprops/action-gh-release@v1
with:
name: jwt-cli-arm64
tag_name: 6.0.0
token: ${{ secrets.CUSTOM_GITHUB_TOKEN }}
files: target/aarch64-unknown-linux-gnu/release/jwt

0 comments on commit 7de98df

Please sign in to comment.