Skip to content

Bump com.gmail.nossr50.mcMMO:mcMMO from 2.2.004 to 2.2.006 #40

Bump com.gmail.nossr50.mcMMO:mcMMO from 2.2.004 to 2.2.006

Bump com.gmail.nossr50.mcMMO:mcMMO from 2.2.004 to 2.2.006 #40

Workflow file for this run

name: Build Artifacts
on:
push:
branches: [ main ]
pull_request:
branches: [ main, dev ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up JDK 17
uses: actions/setup-java@v2
with:
distribution: 'zulu'
java-version: 17
server-id: ossrh # Value of the distributionManagement/repository/id field of the pom.xml
settings-path: ${{ github.workspace }} # location for the settings.xml file
gpg-private-key: ${{ secrets.GPG_PRIVATE_KEY }}
gpg-passphrase: MAVEN_GPG_PASSPHRASE
- name: 'Create settings.xml'
uses: s4u/maven-settings-action@v2.8.0
with:
githubServer: false
- name: Build with Maven
run: mvn clean package -e
env:
GITHUB_TOKEN_REF: ${{ secrets.GH_PAT_FOR_ACTIONS_TOKEN }}