From ef75bd567d96d4b77d160357dba7658e7cf70478 Mon Sep 17 00:00:00 2001 From: Nassim Jahnke Date: Thu, 10 Aug 2023 22:48:22 +1000 Subject: [PATCH] [ci skip] GH already skips all actions with ci skip --- .github/workflows/publish.yml | 19 +++---------------- 1 file changed, 3 insertions(+), 16 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index be8f8bf2a..e96bb1bde 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -12,28 +12,15 @@ jobs: steps: - name: Checkout Repository uses: actions/checkout@v3 - - name: Get and Check Commit Message - id: commit_check - run: | - commit_message=$(git log -1 --pretty=%B) - skip_check=$(echo $commit_message | grep -E '^\[ci skip\]') - if [ "$skip_check" != "" ]; then - echo "Commit message contains [ci skip], skipping publish" - fi - echo "::set-output name=skip::$skip_check" - continue-on-error: true - name: Validate Gradle Wrapper uses: gradle/wrapper-validation-action@v1 - name: Set up JDK 17 uses: actions/setup-java@v3 with: - distribution: 'temurin' - java-version: 17 + distribution: 'temurin' + java-version: 17 - name: Publish env: HANGAR_TOKEN: ${{ secrets.HANGAR_TOKEN }} MODRINTH_TOKEN: ${{ secrets.MODRINTH_TOKEN }} - run: | - if [ "${{ steps.commit_check.outputs.skip }}" == "" ]; then - ./gradlew publishAllPublicationsToHangar - fi + run: ./gradlew publishAllPublicationsToHangar # add 'modrinth' after it is approved