diff --git a/.gitea/workflows/default.yaml b/.gitea/workflows/default.yaml index b58ab67..656ee26 100644 --- a/.gitea/workflows/default.yaml +++ b/.gitea/workflows/default.yaml @@ -19,6 +19,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