chore: add release-tagged-version.yml
This commit is contained in:
parent
5fe565d8aa
commit
1297b0e671
1 changed files with 18 additions and 0 deletions
18
.github/workflows/release-tagged-version.yml
vendored
Normal file
18
.github/workflows/release-tagged-version.yml
vendored
Normal file
|
@ -0,0 +1,18 @@
|
|||
---
|
||||
name: "Release Tagged Version"
|
||||
|
||||
on:
|
||||
push:
|
||||
tags:
|
||||
- "v*"
|
||||
|
||||
jobs:
|
||||
tagged-release:
|
||||
runs-on: "ubuntu-latest"
|
||||
|
||||
steps:
|
||||
- name: "Release Tagged Version"
|
||||
uses: "marvinpinto/action-automatic-releases@latest"
|
||||
with:
|
||||
repo_token: "${{ secrets.GITHUB_TOKEN }}"
|
||||
prerelease: false
|
Loading…
Reference in a new issue