Merge pull request #852 from playframework/update/parsers-4.11.0 #375
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 | |
on: | |
push: | |
branches: # Snapshots | |
- main | |
tags: ["**"] # Releases | |
jobs: | |
publish-snapshot-artifacts: | |
name: Publish / Artifacts (Snapshot) | |
if: github.ref_type == 'branch' # Snapshots | |
uses: playframework/.github/.github/workflows/publish.yml@v4 | |
with: | |
gradle-build-root: gradle-twirl | |
cmd: | | |
sbt +compiler/publishM2 ci-release | |
cd gradle-twirl | |
./gradlew --no-daemon publishToSonatype -x test -PsonatypeUsername="$SONATYPE_USERNAME" -PsonatypePassword="$SONATYPE_PASSWORD" | |
secrets: inherit | |
publish-release: | |
name: Publish / Artifacts (Stable Release) | |
if: github.ref_type == 'tag' # Releases | |
uses: playframework/.github/.github/workflows/publish.yml@v4 | |
secrets: inherit | |
publish-release-gradle: | |
name: Publish / Artifacts (Stable Gradle Plugin) | |
if: github.ref_type == 'tag' # Releases | |
uses: playframework/.github/.github/workflows/publish.yml@v4 | |
with: | |
gradle-build-root: gradle-twirl | |
cmd: | | |
sbt +compiler/publishM2 | |
cd gradle-twirl | |
./gradlew --no-daemon publishPlugins -x test -Pgradle.publish.key="$GRADLE_PUBLISH_KEY" -Pgradle.publish.secret="$GRADLE_PUBLISH_SECRET" | |
secrets: inherit |