Skip to content
This repository has been archived by the owner on Jan 11, 2024. It is now read-only.

v0.6.0: M2.5 Fendermint support #2

v0.6.0: M2.5 Fendermint support

v0.6.0: M2.5 Fendermint support #2

name: Release binaries
permissions:
contents: write
on:
workflow_dispatch:
release:
types: [ created ]
jobs:
upload-assets:
strategy:
fail-fast: false
matrix:
include:
- target: x86_64-unknown-linux-gnu
os: ubuntu-latest
- target: universal-apple-darwin
os: macos-latest
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: taiki-e/upload-rust-binary-action@v1
with:
bin: ipc-agent
target: ${{ matrix.target }}
archive: $bin-$tag-$target
token: ${{ secrets.GITHUB_TOKEN }}