Skip to content

Bump me.modmuss50.mod-publish-plugin from 0.6.2 to 0.6.3 #651

Bump me.modmuss50.mod-publish-plugin from 0.6.2 to 0.6.3

Bump me.modmuss50.mod-publish-plugin from 0.6.2 to 0.6.3 #651

Workflow file for this run

name: build
on: [pull_request, push]
jobs:
build:
strategy:
matrix:
java: [17]
os: [ubuntu-latest]
name: Build - Java ${{ matrix.java }}
runs-on: ${{ matrix.os }}
steps:
- name: checkout repository
uses: actions/checkout@v3
- name: validate gradle wrapper
uses: gradle/wrapper-validation-action@v1
- name: setup jdk ${{ matrix.java }}
uses: actions/setup-java@v3
with:
distribution: temurin
java-version: ${{ matrix.java }}
cache: gradle
- name: make gradle wrapper executable
if: ${{ runner.os != 'Windows' }}
run: chmod +x ./gradlew
- name: build
run: ./gradlew assemble --no-daemon -Dorg.gradle.jvmargs=-Xmx6G