Skip to content

chore(deps): bump amp-common version to v0.9.3, amp-clilent version t… #36

chore(deps): bump amp-common version to v0.9.3, amp-clilent version t…

chore(deps): bump amp-common version to v0.9.3, amp-clilent version t… #36

Workflow file for this run

name: Build Release Binaries
on:
push:
tags:
- v[0-9]+.*
permissions:
contents: write
env:
CARGO_TERM_COLOR: always
jobs:
create-release:
name: Create Release
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: taiki-e/create-gh-release-action@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
upload-assets:
name: Upload Assets
runs-on: ${{ matrix.os }}
strategy:
matrix:
include:
- os: ubuntu-latest
target: x86_64-unknown-linux-gnu
platform: linux-amd64
- os: ubuntu-latest
target: aarch64-unknown-linux-gnu
platform: linux-arm64
- os: macos-latest
target: x86_64-apple-darwin
platform: darwin-amd64
- os: macos-latest
target: aarch64-apple-darwin
platform: darwin-arm64
- os: windows-latest
target: x86_64-pc-windows-msvc
platform: windows-amd64
# - os: windows-latest
# target: aarch64-pc-windows-msvc
# platform: windows-arm64
steps:
- uses: actions/checkout@v4
- name: Install cross-compilation tools
uses: taiki-e/setup-cross-toolchain-action@v1
with:
target: ${{ matrix.target }}
- uses: taiki-e/upload-rust-binary-action@v1
with:
bin: amp
archive: $bin-${{ matrix.platform }}
target: ${{ matrix.target }}
token: ${{ secrets.GITHUB_TOKEN }}
include: LICENSE,README.md