double and triple jumps #135
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: | |
workflow_dispatch: | |
inputs: | |
publish: | |
description: Publish to Modrinth | |
required: true | |
default: "false" | |
pull_request: | |
push: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
env: | |
PUBLISH_SUFFIX: snapshots | |
MAVEN_USER: ${{ secrets.MAVEN_USER }} | |
MAVEN_PASS: ${{ secrets.MAVEN_PASS }} | |
MODRINTH_TOKEN: ${{ secrets.MODRINTH_TOKEN }} | |
steps: | |
- name: checkout repository | |
uses: actions/checkout@v3 | |
- name: make gradle wrapper executable | |
run: chmod +x ./gradlew | |
- name: setup Java | |
uses: actions/setup-java@v3 | |
with: | |
distribution: temurin | |
java-version: 17 | |
cache: gradle | |
- name: build | |
run: ./gradlew buildOrPublish | |
- name: capture build artifacts | |
uses: actions/upload-artifact@v3 | |
with: | |
name: Artifacts | |
path: build/libs/ | |
- name: publish to Modrinth | |
if: ${{ github.event.inputs.publish }} | |
run: ./gradlew modrinth |