Create GitHub release when new release tag is pushed (#1354)

pull/1392/head v1.8.4
Martti T 2023-05-30 12:38:40 +03:00 committed by GitHub
parent 4c93d8f201
commit f97607b898
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 19 additions and 0 deletions

19
.github/workflows/release.yml vendored Normal file
View File

@ -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