From 85223288c4f5bddbfdb0bb662f0fa6a6c7a30666 Mon Sep 17 00:00:00 2001 From: Viren070 Date: Mon, 17 Mar 2025 20:51:18 +0000 Subject: [PATCH] ci: attempt to fix release.yml --- .github/workflows/release.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 3cf6ae50..f6b74e93 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -14,7 +14,7 @@ jobs: - name: Checkout repository uses: actions/checkout@v4 with: - fetch-depth: 0 # Ensures full commit history + fetch-depth: 0 # Ensures full commit history - name: Get latest commit message id: get_commit_message @@ -33,17 +33,17 @@ jobs: elif echo "$COMMIT_MSG" | grep -q "#release"; then echo "bump_type=patch" >> $GITHUB_OUTPUT else - echo "bump_type=" >> $GITHUB_OUTPUT + echo "bump_type=none" >> $GITHUB_OUTPUT bump_version: needs: check_commit - if: needs.check_commit.outputs.bump_type != '' + if: needs.check_commit.outputs.bump_type != 'none' runs-on: ubuntu-latest steps: - name: Checkout repository uses: actions/checkout@v4 with: - fetch-depth: 0 # Ensures full commit history + fetch-depth: 0 # Ensures full commit history - name: Set up Node.js uses: actions/setup-node@v3