Bump com.github.spullara.mustache.java:compiler #31
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: Publish snapshots to maven | |
env: | |
# SONATYPE_USERNAME SONATYPE_PASSWORD refers to credentials for maven.eliatra.com artifactory | |
# We do not use the real sonatype repo for publishing anything, but the variables are hardcoded in upstream code | |
SONATYPE_PASSWORD: ${{ secrets.SONATYPE_PASSWORD }} | |
SONATYPE_USERNAME: ${{ secrets.SONATYPE_USERNAME }} | |
on: | |
workflow_dispatch: | |
push: | |
#branches: | |
# - '[0-9]+.[0-9]+' | |
# - '[0-9]+.x' | |
jobs: | |
build-and-publish-snapshots: | |
runs-on: ubuntu-latest | |
#permissions: | |
# id-token: write | |
# contents: write | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v4 | |
with: | |
distribution: temurin | |
java-version: 17 | |
- name: Publish snapshots to maven | |
run: | | |
./gradlew publishNebulaPublicationToSnapshotsRepository |