From 33dc7fbc45303752d4cc905bdfa09b9cb3b5392c Mon Sep 17 00:00:00 2001 From: Miguel Date: Mon, 9 Jun 2025 11:59:03 +0200 Subject: [PATCH] Update yakos-build.yml --- .github/workflows/yakos-build.yml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/.github/workflows/yakos-build.yml b/.github/workflows/yakos-build.yml index 1761714..9cf00de 100644 --- a/.github/workflows/yakos-build.yml +++ b/.github/workflows/yakos-build.yml @@ -37,13 +37,20 @@ jobs: - name: Fetch tags run: git fetch --prune --unshallow --tags + - name: Update canary tag + run: | + git config user.name "github-actions[bot]" + git config user.email "github-actions[bot]@users.noreply.github.com" + git tag yako_canary + git push origin yako_canary + - name: Delete previous release run: | gh release delete --yes yako_canary continue-on-error: true - env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + - name: Get current date id: date run: echo "::set-output name=date::$(date +'%Y-%m-%d')"