Skip to content

Commit

Permalink
Merge pull request #540 from mkurz/fix_gha
Browse files Browse the repository at this point in the history
[0.11.x] make sbt-ci-release work "correctly"
  • Loading branch information
mkurz authored May 24, 2024
2 parents fdad2a3 + a0cbe28 commit 4afbd5d
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,15 @@ jobs:
name: Publish / Scala 2.13 Artifacts
uses: playframework/.github/.github/workflows/publish.yml@v3
with:
cmd: CI_RELEASE=publishSigned sbt ++2.13.x ci-release
cmd: |
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: CI_RELEASE=publishSigned sbt -DUSE_BSL=true ++3.x ci-release
cmd: |
export CI_RELEASE=publishSigned
sbt -DUSE_BSL=true ++3.x ci-release
secrets: inherit

0 comments on commit 4afbd5d

Please sign in to comment.