mirror of
https://github.com/ViaVersion/ViaVersion.git
synced 2024-11-28 21:15:51 +01:00
[ci skip] GH already skips all actions with ci skip
This commit is contained in:
parent
7ed3e50e93
commit
ef75bd567d
19
.github/workflows/publish.yml
vendored
19
.github/workflows/publish.yml
vendored
@ -12,28 +12,15 @@ jobs:
|
|||||||
steps:
|
steps:
|
||||||
- name: Checkout Repository
|
- name: Checkout Repository
|
||||||
uses: actions/checkout@v3
|
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
|
- name: Validate Gradle Wrapper
|
||||||
uses: gradle/wrapper-validation-action@v1
|
uses: gradle/wrapper-validation-action@v1
|
||||||
- name: Set up JDK 17
|
- name: Set up JDK 17
|
||||||
uses: actions/setup-java@v3
|
uses: actions/setup-java@v3
|
||||||
with:
|
with:
|
||||||
distribution: 'temurin'
|
distribution: 'temurin'
|
||||||
java-version: 17
|
java-version: 17
|
||||||
- name: Publish
|
- name: Publish
|
||||||
env:
|
env:
|
||||||
HANGAR_TOKEN: ${{ secrets.HANGAR_TOKEN }}
|
HANGAR_TOKEN: ${{ secrets.HANGAR_TOKEN }}
|
||||||
MODRINTH_TOKEN: ${{ secrets.MODRINTH_TOKEN }}
|
MODRINTH_TOKEN: ${{ secrets.MODRINTH_TOKEN }}
|
||||||
run: |
|
run: ./gradlew publishAllPublicationsToHangar # add 'modrinth' after it is approved
|
||||||
if [ "${{ steps.commit_check.outputs.skip }}" == "" ]; then
|
|
||||||
./gradlew publishAllPublicationsToHangar
|
|
||||||
fi
|
|
||||||
|
Loading…
Reference in New Issue
Block a user