Create release_tag.yml

Solves #1740
This commit is contained in:
Edward Firmo
2024-01-28 20:34:43 +01:00
parent 51f2df89bd
commit f73f4eba53

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

@@ -0,0 +1,19 @@
---
name: Update Stable Tag
on:
release:
types: [published]
jobs:
update-tag:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4.1.0
- name: Move and push tag
run: |
git tag -f stable ${{ github.event.release.tag_name }}
git push -f origin stable
...