create tag automatically on push
Some checks failed
Build iso when a new version is pushed / test (push) Failing after 13s

This commit is contained in:
2025-04-15 19:54:43 +02:00
parent 64f4635618
commit de34ac63af

View File

@ -20,6 +20,14 @@ jobs:
#- name: build iso
# run: make iso
- name: Create tag
run: |
TAG=$(git rev-parse --short HEAD)
git config user.name "github-actions"
git config user.email "actions@github.com"
git tag $TAG
git push origin $TAG
- name: create release
uses: https://gitea.com/actions/release-action@main
with: