Skip to content

refactor: migrate executor (#165) #23

refactor: migrate executor (#165)

refactor: migrate executor (#165) #23

Workflow file for this run

name: Release
on:
push:
tags:
- v[0-9]+.*
jobs:
create-release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- uses: taiki-e/create-gh-release-action@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
upload-assets:
name: ${{ matrix.target }}
needs:
- create-release
strategy:
matrix:
os:
- ubuntu-latest
- macos-latest
- windows-latest
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@master
- uses: taiki-e/install-action@v2
with:
toolchain: nightly
- uses: taiki-e/upload-rust-binary-action@v1
with:
# (required)
bin: eigen-zkit
archive: $bin-$target
target: ${{ matrix.target }}
tar: all
env:
# (required)
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
CARGO_PROFILE_RELEASE_LTO: true