From f99e6e0e00532e580c3cdd0c46114fa20b7c6076 Mon Sep 17 00:00:00 2001 From: Aadi Desai <21363892+supleed2@users.noreply.github.com> Date: Sun, 7 May 2023 22:18:08 +0100 Subject: [PATCH] Add GitHub Actions release.yaml --- .github/workflows/release.yaml | 35 ++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 .github/workflows/release.yaml diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml new file mode 100644 index 0000000..75955a0 --- /dev/null +++ b/.github/workflows/release.yaml @@ -0,0 +1,35 @@ +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: + token: ${{ secrets.GITHUB_TOKEN }} # GitHub token for creating GitHub Releases. + + 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: + bin: namehash # Comma-separated list of binary names to build and upload. + tar: none # On which platform to distribute the `.tar.gz` file. + zip: none # On which platform to distribute the `.zip` file. + token: ${{ secrets.GITHUB_TOKEN }} # GitHub token for uploading assets to GitHub Releases.