Update compat-checks.yml #25
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Publish | |
on: | |
push: | |
branches: [ "main" ] | |
permissions: | |
contents: read | |
statuses: write | |
jobs: | |
publish: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: neoforged/action-tag-versioning@v1 | |
name: Calculate version | |
id: version | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
labels: -beta, -stable | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 1000 | |
fetch-tags: true | |
- name: Make Gradlew executable | |
# language=bash | |
run: chmod +x ./gradlew # Thanks Windows | |
- name: Setup Java 17 | |
# https://github.com/actions/runner-images/blob/main/images/linux/Ubuntu2204-Readme.md#java | |
# language=bash | |
run: | | |
echo "JAVA_HOME=$(echo $JAVA_HOME_17_X64)" >> "$GITHUB_ENV" | |
- name: Build with Gradle | |
uses: gradle/gradle-build-action@v2 | |
with: | |
arguments: publish | |
env: | |
MAVEN_USER: ${{ secrets.MAVEN_USER }} | |
MAVEN_PASSWORD: ${{ secrets.MAVEN_PASSWORD }} | |
- uses: neoforged/action-github-status@v1 | |
name: Set pending status | |
with: | |
authToken: ${{secrets.GITHUB_TOKEN}} | |
context: 'Publishing' | |
state: 'success' | |
description: "Version: ${{ steps.version.outputs.version }}" | |
target_url: ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }} |