Skip to content

Commit

Permalink
build: fix GH release action (#117)
Browse files Browse the repository at this point in the history
  • Loading branch information
VojtechVidra committed May 29, 2024
1 parent f4437db commit efe1207
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/create-gh-release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
- name: Create GitHub Release

on:
push:
tags:
- "v*.*.**"

jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Release
uses: softprops/action-gh-release@v2
with:
generate_release_notes: true
prerelease: ${{ contains(github.ref, 'canary')}}

0 comments on commit efe1207

Please sign in to comment.