Automatically unlock recipes and warn for advancements (#1437) #4322
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: Build | |
on: | |
pull_request: | |
workflow_dispatch: | |
push: | |
branches: | |
- dev | |
jobs: | |
build: | |
permissions: | |
contents: read | |
packages: write | |
runs-on: ubuntu-latest | |
steps: | |
- id: checkout | |
name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- id: setup-java | |
name: Setup Java | |
uses: actions/setup-java@v4 | |
with: | |
java-version: 21 | |
distribution: temurin | |
# Configures gradle with caching | |
- name: Setup Gradle | |
uses: gradle/actions/setup-gradle@v4 | |
# Run "gradlew publish" for origin/dev and "gradlew build" for PRs or elsewhere | |
- name: Execute Gradle ${{ (github.repository == 'PGMDev/PGM' && github.ref == 'refs/heads/dev') && 'Publish' || 'Build' }} | |
run: ./gradlew ${{ (github.repository == 'PGMDev/PGM' && github.ref == 'refs/heads/dev') && 'publish' || 'build' }} | |
env: | |
GITHUB_TOKEN: ${{ (github.repository == 'PGMDev/PGM' && github.ref == 'refs/heads/dev') && secrets.GITHUB_TOKEN || '' }} | |
- id: artifact | |
name: Upload Jar | |
uses: actions/upload-artifact@v4 | |
with: | |
name: PGM.jar | |
path: build/libs/PGM.jar | |
if-no-files-found: error |