remote auto tag remove
Some checks failed
Build iso when a new version is pushed / build_and_create_release (push) Failing after 10s

This commit is contained in:
2025-04-15 20:48:35 +02:00
parent f4553d5657
commit 794b28c843
2 changed files with 3 additions and 24 deletions

View File

@ -25,8 +25,9 @@ jobs:
# run: make iso
#
- name: fetch tags
run: git fetch --tags
run: echo ${{secrets.RELEASE_TOKEN}}
run: |
git fetch --tags
echo ${{secrets.RELEASE_TOKEN}}
- name: create release
uses: https://gitea.com/actions/release-action@main

View File

@ -1,22 +0,0 @@
name: Build iso when a new version is pushed
run-name: iso building
on:
push:
branches:
- master
jobs:
create_and_push_tag:
runs-on: ubuntu-latest
steps:
- name: get repo
uses: actions/checkout@v4.2.2
- name: create tag
run: |
TAG=$(git rev-parse --short HEAD)
echo "Creating tag $TAG"
git config user.name "gitea-actions"
git config user.email "actions@gitea.com"
git tag "$TAG"
git push origin "$TAG"