Skip to content

Commit

Permalink
Update the targets
Browse files Browse the repository at this point in the history
  • Loading branch information
matiaskorhonen committed Feb 4, 2023
1 parent b0908c0 commit 8b3a259
Showing 1 changed file with 11 additions and 3 deletions.
14 changes: 11 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,15 +28,21 @@ jobs:
strategy:
matrix:
include:
# Linux (ARM and x86-64)
- target: aarch64-unknown-linux-gnu
os: ubuntu-latest
- target: aarch64-apple-darwin
os: macos-latest
- target: x86_64-unknown-linux-gnu
os: ubuntu-latest
# Universal macOS binary is supported as universal-apple-darwin.
# macOS targets (ARM, x86-64, and Universal)
- target: aarch64-apple-darwin
os: macos-latest
- target: x86_64-apple-darwin
os: macos-latest
- target: universal-apple-darwin
os: macos-latest
# Windows (x86-64)
- target: x86_64-pc-windows-msvc
os: windows-latest
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
Expand All @@ -45,6 +51,8 @@ jobs:
# (required) Comma-separated list of binary names (non-extension portion of filename) to build and upload.
# Note that glob pattern is not supported yet.
bin: paper-age
# (optional) Comma-separated list of algorithms to be used for checksum (sha256, sha512, sha1, or md5)
checksum: sha256
# (optional) Target triple, default is host triple.
target: ${{ matrix.target }}
# (optional) Comma-separated list of additional files to be included to archive.
Expand Down

0 comments on commit 8b3a259

Please sign in to comment.