Skip to content

Commit

Permalink
merge branch main into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
v-spassky committed Jul 18, 2023
2 parents afbc684 + 3c7cc96 commit 59aa88f
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
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 }}

upload-assets:
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: taiki-e/upload-rust-binary-action@v1
with:
bin: happens
token: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 59aa88f

Please sign in to comment.