thats so crazy #1544
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: | |
push: | |
jobs: | |
build: | |
strategy: | |
matrix: | |
java: [17] | |
os: [ubuntu-latest] | |
runs-on: ${{ matrix.os }} | |
env: | |
MAVEN_URL: ${{secrets.SNAPSHOT_MAVEN_URL}} | |
MAVEN_USERNAME: ${{secrets.MAVEN_USERNAME}} | |
MAVEN_PASSWORD: ${{secrets.MAVEN_PASSWORD}} | |
steps: | |
- name: Cache Dependencies | |
uses: actions/cache@v3 | |
with: | |
path: | | |
~/.gradle/caches | |
~/.gradle/loom-cache | |
~/.gradle/wrapper | |
key: ${{ runner.os }}-gradle-${{ hashFiles('**/gradle-wrapper.properties') }} | |
restore-keys: | | |
${{ runner.os }}-gradle- | |
- name: Checkout Repository | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Setup JDK ${{ matrix.java }} | |
uses: actions/setup-java@v3 | |
with: | |
distribution: 'zulu' | |
java-version: ${{ matrix.java }} | |
- name: Validate Gradle Wrapper | |
uses: gradle/wrapper-validation-action@v1 | |
- name: Make Gradle Wrapper Executable | |
if: ${{ runner.os != 'Windows' }} | |
run: chmod +x ./gradlew | |
- name: Build | |
run: ./gradlew build publish -PuseThirdPartyMods=false | |
- name: Extract current branch name | |
shell: bash | |
# bash pattern expansion to grab branch name without slashes | |
run: ref="${GITHUB_REF#refs/heads/}" && echo "::set-output name=branch::${ref////-}" | |
id: ref | |
- name: Capture Build Artifacts | |
uses: actions/upload-artifact@v3 | |
with: | |
name: FrozenLib-Artifacts-${{ steps.ref.outputs.branch }} | |
path: build/libs/ |