Don't push prerelease for release commits

Looks for the text "Official release version of Stockfish" in the commit
message to determine if something is a release.

closes https://github.com/official-stockfish/Stockfish/pull/6580

No functional change
This commit is contained in:
disservin
2026-02-04 18:00:54 +01:00
committed by Joost VandeVondele
parent 3ee16a1d8e
commit 9cc2985f51
2 changed files with 46 additions and 19 deletions
+35 -18
View File
@@ -15,6 +15,7 @@ jobs:
Prerelease: Prerelease:
if: github.repository == 'official-stockfish/Stockfish' && (github.ref == 'refs/heads/master' || (startsWith(github.ref_name, 'sf_') && github.ref_type == 'tag')) if: github.repository == 'official-stockfish/Stockfish' && (github.ref == 'refs/heads/master' || (startsWith(github.ref_name, 'sf_') && github.ref_type == 'tag'))
runs-on: ubuntu-latest runs-on: ubuntu-latest
needs: [Matrix]
permissions: permissions:
contents: write # For deleting/creating a prerelease contents: write # For deleting/creating a prerelease
steps: steps:
@@ -53,16 +54,25 @@ jobs:
id: commit_date id: commit_date
run: echo "COMMIT_DATE=$(git show -s --date=format:'%Y%m%d' --format=%cd HEAD)" >> $GITHUB_ENV run: echo "COMMIT_DATE=$(git show -s --date=format:'%Y%m%d' --format=%cd HEAD)" >> $GITHUB_ENV
- name: Official Release?
id: official_release
# Check for "Official release version of Stockfish" in the commit message
run: |
if git log -1 --pretty=%B | grep -q "Official release version of Stockfish"; then
echo "OFFICIAL_RELEASE=true" >> $GITHUB_ENV
else
echo "OFFICIAL_RELEASE=false" >> $GITHUB_ENV
fi
# Create a new pre-release, the other upload_binaries.yml will upload the binaries # Create a new pre-release, the other upload_binaries.yml will upload the binaries
# to this pre-release. # to this pre-release.
- name: Create Prerelease - name: Create Prerelease
if: github.ref_name == 'master' && env.CHANGES == '0' if: github.ref_name == 'master' && env.CHANGES == '0' && env.OFFICIAL_RELEASE == 'false'
uses: softprops/action-gh-release@4634c16e79c963813287e889244c50009e7f0981 uses: softprops/action-gh-release@4634c16e79c963813287e889244c50009e7f0981
with: with:
name: Stockfish dev-${{ env.COMMIT_DATE }}-${{ env.COMMIT_SHA }} name: Stockfish dev-${{ env.COMMIT_DATE }}-${{ env.COMMIT_SHA }}
tag_name: stockfish-dev-${{ env.COMMIT_DATE }}-${{ env.COMMIT_SHA }} tag_name: stockfish-dev-${{ env.COMMIT_DATE }}-${{ env.COMMIT_SHA }}
prerelease: true prerelease: true
Matrix: Matrix:
runs-on: ubuntu-latest runs-on: ubuntu-latest
outputs: outputs:
@@ -80,29 +90,38 @@ jobs:
run: | run: |
TASKS_ARM=$(echo $(cat .github/ci/arm_matrix.json) ) TASKS_ARM=$(echo $(cat .github/ci/arm_matrix.json) )
echo "ARM_MATRIX=$TASKS_ARM" >> $GITHUB_OUTPUT echo "ARM_MATRIX=$TASKS_ARM" >> $GITHUB_OUTPUT
# Testing Jobs
IWYU:
uses: ./.github/workflows/iwyu.yml
Sanitizers:
if: ${{ always() }}
uses: ./.github/workflows/sanitizers.yml
Tests:
if: ${{ always() }}
uses: ./.github/workflows/tests.yml
Matetrack:
if: ${{ always() }}
uses: ./.github/workflows/matetrack.yml
Games:
if: ${{ always() }}
uses: ./.github/workflows/games.yml
CompilerCheck:
if: ${{ always() }}
uses: ./.github/workflows/avx2_compilers.yml
# Release Jobs
Compilation: Compilation:
needs: [Matrix] needs: [Matrix, Sanitizers, Tests, Matetrack, Games, CompilerCheck]
uses: ./.github/workflows/compilation.yml uses: ./.github/workflows/compilation.yml
with: with:
matrix: ${{ needs.Matrix.outputs.matrix }} matrix: ${{ needs.Matrix.outputs.matrix }}
ARMCompilation: ARMCompilation:
needs: [Matrix] needs: [Matrix, Sanitizers, Tests, Matetrack, Games, CompilerCheck]
uses: ./.github/workflows/arm_compilation.yml uses: ./.github/workflows/arm_compilation.yml
with: with:
matrix: ${{ needs.Matrix.outputs.arm_matrix }} matrix: ${{ needs.Matrix.outputs.arm_matrix }}
IWYU:
uses: ./.github/workflows/iwyu.yml
Sanitizers:
uses: ./.github/workflows/sanitizers.yml
Tests:
uses: ./.github/workflows/tests.yml
Matetrack:
uses: ./.github/workflows/matetrack.yml
Games:
uses: ./.github/workflows/games.yml
Binaries: Binaries:
if: github.repository == 'official-stockfish/Stockfish' if: github.repository == 'official-stockfish/Stockfish'
needs: [Matrix, Prerelease, Compilation] needs: [Prerelease, Matrix, Compilation]
uses: ./.github/workflows/upload_binaries.yml uses: ./.github/workflows/upload_binaries.yml
with: with:
matrix: ${{ needs.Matrix.outputs.matrix }} matrix: ${{ needs.Matrix.outputs.matrix }}
@@ -112,7 +131,7 @@ jobs:
token: ${{ secrets.GITHUB_TOKEN }} token: ${{ secrets.GITHUB_TOKEN }}
ARM_Binaries: ARM_Binaries:
if: github.repository == 'official-stockfish/Stockfish' if: github.repository == 'official-stockfish/Stockfish'
needs: [Matrix, Prerelease, ARMCompilation] needs: [Prerelease, Matrix, ARMCompilation]
uses: ./.github/workflows/upload_binaries.yml uses: ./.github/workflows/upload_binaries.yml
with: with:
matrix: ${{ needs.Matrix.outputs.arm_matrix }} matrix: ${{ needs.Matrix.outputs.arm_matrix }}
@@ -120,5 +139,3 @@ jobs:
contents: write # For deleting/creating a (pre)release contents: write # For deleting/creating a (pre)release
secrets: secrets:
token: ${{ secrets.GITHUB_TOKEN }} token: ${{ secrets.GITHUB_TOKEN }}
CompilerCheck:
uses: ./.github/workflows/avx2_compilers.yml
+11 -1
View File
@@ -92,8 +92,18 @@ jobs:
CHANGES=$(git rev-list HEAD..origin/master --count) CHANGES=$(git rev-list HEAD..origin/master --count)
echo "CHANGES=$CHANGES" >> $GITHUB_ENV echo "CHANGES=$CHANGES" >> $GITHUB_ENV
- name: Official Release?
id: official_release
# Check for "Official release version of Stockfish" in the commit message
run: |
if git log -1 --pretty=%B | grep -q "Official release version of Stockfish"; then
echo "OFFICIAL_RELEASE=true" >> $GITHUB_ENV
else
echo "OFFICIAL_RELEASE=false" >> $GITHUB_ENV
fi
- name: Prerelease - name: Prerelease
if: github.ref_name == 'master' && env.CHANGES == '0' if: github.ref_name == 'master' && env.CHANGES == '0' && env.OFFICIAL_RELEASE == 'false'
continue-on-error: true continue-on-error: true
uses: softprops/action-gh-release@4634c16e79c963813287e889244c50009e7f0981 uses: softprops/action-gh-release@4634c16e79c963813287e889244c50009e7f0981
with: with: