Skip to content

bump version

bump version #15

Workflow file for this run

name: Release
on:
push:
tags:
- v[0-9]+.*
jobs:
create-release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: taiki-e/create-gh-release-action@v1
env:
# (required)
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
upload-assets:
strategy:
matrix:
include:
# apple
- target: x86_64-apple-darwin
os: macos-latest
build_tool: cargo
- target: aarch64-apple-darwin
os: macos-latest
build_tool: cargo
#windows
- target: x86_64-pc-windows-msvc
os: windows-latest
build_tool: cargo
- target: i686-pc-windows-msvc
os: windows-latest
build_tool: cargo
- target: aarch64-pc-windows-msvc
os: windows-latest
build_tool: cargo
#linux
- target: x86_64-unknown-linux-musl
os: ubuntu-latest
build_tool: cargo
- target: i686-unknown-linux-musl
os: ubuntu-latest
build_tool: cargo
- target: aarch64-unknown-linux-musl
os: ubuntu-latest
build_tool: cargo-zigbuild
- target: armv7-unknown-linux-musleabihf
os: ubuntu-latest
build_tool: cargo-zigbuild
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: taiki-e/upload-rust-binary-action@v1
with:
target: ${{ matrix.target }}
# (required)
bin: fubuki
# (optional) On which platform to distribute the `.tar.gz` file.
# [default value: unix]
# [possible values: all, unix, windows, none]
tar: unix
# (optional) On which platform to distribute the `.zip` file.
# [default value: windows]
# [possible values: all, unix, windows, none]
zip: windows
build_tool: ${{ matrix.build_tool }}
features: web
env:
# (required)
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
RUSTUP_TOOLCHAIN: nightly
CARGO_TERM_COLOR: always