Merge pull request #567 from scala-steward/update/0.11.x/sbt-ci-relea… #115
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 | |
- 0.11.x | |
tags: ["**"] # Releases | |
jobs: | |
publish-artifacts-scala-2: | |
name: Publish / Scala 2.13 Artifacts | |
uses: playframework/.github/.github/workflows/publish.yml@v3 | |
with: | |
cmd: | | |
export CI_SNAPSHOT_RELEASE=publish | |
export CI_RELEASE=publishSigned | |
sbt ++2.13.x ci-release | |
secrets: inherit | |
publish-artifacts-scala-3: | |
name: Publish / Scala 3 Artifacts | |
uses: playframework/.github/.github/workflows/publish.yml@v3 | |
with: | |
cmd: | | |
export CI_SNAPSHOT_RELEASE=publish | |
export CI_RELEASE=publishSigned | |
sbt -DUSE_BSL=true ++3.x ci-release | |
secrets: inherit |