Skip to content

Commit

Permalink
Create GitHub release when new release tag is pushed (#1354)
Browse files Browse the repository at this point in the history
  • Loading branch information
aldas committed May 30, 2023
1 parent 4c93d8f commit f97607b
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/release.yml
@@ -0,0 +1,19 @@
name: Create release from new tag

# this flow will be run only when new tags are pushed that match our pattern
on:
push:
tags:
- "v[0-9]+.[0-9]+.[0-9]+"

jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: Checkout
uses: actions/checkout@v3

- name: Create GitHub release from tag
uses: softprops/action-gh-release@v1

0 comments on commit f97607b

Please sign in to comment.