From 8fef89138ba8bccbbe51c6da39b2983971cf679f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mart=C3=ADn=20Lucas=20Golini?= Date: Tue, 21 Apr 2026 17:07:23 -0300 Subject: [PATCH] Change the Update Tag step in CI. --- .github/workflows/ecode-nightly.yml | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ecode-nightly.yml b/.github/workflows/ecode-nightly.yml index 5879046b9..a059cda44 100644 --- a/.github/workflows/ecode-nightly.yml +++ b/.github/workflows/ecode-nightly.yml @@ -25,11 +25,9 @@ jobs: run: | echo "version=nightly" >> "$GITHUB_OUTPUT" - name: Update Tag - uses: richardsimko/update-tag@v1 - with: - tag_name: ${{ steps.tag.outputs.version }} - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + run: | + git tag -f ${{ steps.tag.outputs.version }} + git push -f origin ${{ steps.tag.outputs.version }} - name: Create Release id: create_release uses: softprops/action-gh-release@v3