Skip to content

Release

Release #412

Workflow file for this run

# 1. Populate the release object when a new release is created
# in GitHub.
# <https://github.com/taiki-e/create-gh-release-action>
# 2. (not yet) Attach binaries to releases
# <https://github.com/taiki-e/upload-rust-binary-action>
name: Release
permissions:
contents: write
on:
release:
types:
- created
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
with:
changelog: NEWS.md
token: ${{ secrets.GITHUB_TOKEN }}
draft: true
# TODO: maybe also `branch: main` as in general we
# should not release from other branches
upload-assets:
needs: create-release
strategy:
matrix:
include:
- target: x86_64-unknown-linux-gnu
os: ubuntu-latest
- target: x86_64-apple-darwin
os: macos-latest
- target: x86_64-pc-windows-msvc
os: windows-latest
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: taiki-e/upload-rust-binary-action@v1
with:
# (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: cargo-mutants
# (required) GitHub token for uploading assets to GitHub Releases.
token: ${{ secrets.GITHUB_TOKEN }}