Skip to content

Commit

Permalink
Update release.yml
Browse files Browse the repository at this point in the history
Added Mac silicon target

Using latest runner OSs
  • Loading branch information
lmammino committed Jul 11, 2023
1 parent 1955af5 commit 0cb603c
Showing 1 changed file with 14 additions and 4 deletions.
18 changes: 14 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,23 +10,33 @@ jobs:
strategy:
matrix:
environment:
- os: "ubuntu-18.04"
- os: "ubuntu-latest"
target: "x86_64-unknown-linux-gnu"
cross: true
exec: jwtinfo
artifact-name: "jwtinfo-unix64"
- os: "macos-10.15"
- os: "macos-latest"
target: "x86_64-apple-darwin"
cross: true
exec: jwtinfo
artifact-name: "jwtinfo-macos"
- os: "ubuntu-18.04"
- os: "macos-latest"

target: "aarch64-apple-darwin"

cross: true

exec: jwtinfo

artifact-name: "jwtinfo-macos-silicon"

- os: "ubuntu-latest"
target: "x86_64-pc-windows-gnu"
cross: true
exec: jwtinfo.exe
artifact-name: "jwtinfo-win64.exe"
packages: "gcc-mingw-w64"
- os: "ubuntu-18.04"
- os: "ubuntu-latest"
target: "armv7-unknown-linux-gnueabihf"
cross: true
exec: jwtinfo
Expand Down

0 comments on commit 0cb603c

Please sign in to comment.