From 0e6cc7f9a465690943dce02105d55fcf55116f82 Mon Sep 17 00:00:00 2001 From: Christian Tosta Date: Fri, 18 Apr 2025 11:01:33 -0300 Subject: [PATCH] Updated auto-tagging workflow --- .github/workflows/auto-tag.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/auto-tag.yml b/.github/workflows/auto-tag.yml index ae946dc..52dfe77 100644 --- a/.github/workflows/auto-tag.yml +++ b/.github/workflows/auto-tag.yml @@ -4,6 +4,7 @@ on: push: schedule: - cron: '30 3 * * *' + workflow_dispatch: jobs: create-tag: @@ -36,5 +37,5 @@ jobs: if: steps.tagged.outputs.tagged == 0 run: | git tag ${NEW_TAG} \ - && git push origin ${NEW_TAG}) \ + && git push origin ${NEW_TAG} \ || exit 0