From 9ce9fc64f6d080ec63e14f0842f2bf6e710584ab Mon Sep 17 00:00:00 2001 From: blankdvth Date: Mon, 31 Mar 2025 02:22:54 -0400 Subject: [PATCH] fix: CI failing due to conflicting tags The CI automatically creates a tag based on the GitHub run number, however, the CI is presently repeatedly failing due to tags with those run numbers already existing (likely from the fork); this fixes that by bumping the prefix to v1.1 rather than v1.0 --- .github/workflows/nightly.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml index 5461095..56dcf40 100644 --- a/.github/workflows/nightly.yml +++ b/.github/workflows/nightly.yml @@ -60,7 +60,7 @@ jobs: - name: Set version tag and zip file name id: version run: | - VERSION="v1.0.${{ github.run_number }}" + VERSION="v1.1.${{ github.run_number }}" if [[ $GITHUB_REF == 'refs/heads/dev' ]]; then TAG="Prerelease $VERSION" else @@ -81,7 +81,7 @@ jobs: name: ${{ env.TAG }} artifacts: publish/${{ env.ZIP_NAME }} prerelease: ${{ contains(github.ref, 'dev') }} - tag: v1.0.${{ github.run_number }} + tag: v1.1.${{ github.run_number }} env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}