2023-05-07 21:18:08 +00:00
|
|
|
name: Release
|
|
|
|
|
|
|
|
permissions:
|
|
|
|
contents: write
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
tags:
|
|
|
|
- v[0-9]+.*
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
create-release:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v3
|
|
|
|
- uses: taiki-e/create-gh-release-action@v1
|
|
|
|
with:
|
2023-05-07 21:19:35 +00:00
|
|
|
# GitHub token for creating GitHub Releases.
|
|
|
|
token: ${{ secrets.GITHUB_TOKEN }}
|
2023-05-07 21:18:08 +00:00
|
|
|
|
|
|
|
upload-assets:
|
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
os:
|
|
|
|
- ubuntu-latest
|
|
|
|
- macos-latest
|
|
|
|
- windows-latest
|
|
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v3
|
|
|
|
- uses: taiki-e/upload-rust-binary-action@v1
|
|
|
|
with:
|
2023-05-07 21:19:35 +00:00
|
|
|
# Comma-separated list of binary names to build and upload.
|
|
|
|
bin: namehash
|
|
|
|
# GitHub token for uploading assets to GitHub Releases.
|
|
|
|
token: ${{ secrets.GITHUB_TOKEN }}
|