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
aldas authored May 30, 2023

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
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
Original file line number Diff line number Diff line change
@@ -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.