Update changelog [build] [publish] #7
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 and Maven | |
on: [push, workflow_dispatch] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up JDK 21 | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'temurin' | |
java-version: 21 | |
cache: 'gradle' | |
- name: Make gradlew executable | |
run: chmod +x ./gradlew | |
- name: Build with Gradle | |
run: ./gradlew build | |
- uses: actions/upload-artifact@v4 | |
with: | |
path: ./build/libs/ | |
- name: Publish to maven | |
if: contains(github.event.head_commit.message, '[push]') || contains(github.event.head_commit.message, '[build]') | |
env: | |
SAP_SECRET: ${{ secrets.SAP_SECRET }} | |
run: ./gradlew publish | |
- name: Publish To Curseforge | |
if: contains(github.event.head_commit.message, '[publish]') || contains(github.event.head_commit.message, '[curseforge]') | |
env: | |
CURSEFORGE_KEY: ${{ secrets.CURSEFORGE_KEY }} | |
run: ./gradlew curseforge --stacktrace | |
- name: Publish To Modrinth | |
if: contains(github.event.head_commit.message, '[publish]') || contains(github.event.head_commit.message, '[modrinth]') | |
env: | |
MODRINTH_KEY: ${{ secrets.MODRINTH_KEY }} | |
run: ./gradlew modrinth --stacktrace |