Skip to content

Commit

Permalink
Fix job
Browse files Browse the repository at this point in the history
  • Loading branch information
rochala committed Jul 24, 2024
1 parent 5bde864 commit aa0dc54
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/release-expression-compiler.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@ jobs:
SCALA_VERSION: ${{ inputs.scala-version }}
SCALA_30: ${{ startsWith(inputs.scala-version, 3.0) }}
SCALA_31_PLUS: ${{ startsWith(inputs.scala-version, '3.1') || startsWith(inputs.scala-version, '3.2') || startsWith(inputs.scala-version, '3.3') }}
SCALA_34_PLUS: ${{ startsWith(inputs.scala-version, '3') && !env.SCALA_30 && !env.SCALA_31_PLUS }}
PGP_PASSPHRASE: ${{ secrets.PGP_PASSPHRASE }}
SONATYPE_PASSWORD: ${{ secrets.SONATYPE_PASSWORD }}
SONATYPE_USERNAME: ${{ secrets.SONATYPE_USERNAME }}
Expand All @@ -51,7 +50,7 @@ jobs:
- run: sbt 'expressionCompiler31Plus/publishSigned;sonatypeBundleRelease'
if: env.SCALA_31_PLUS
- run: sbt 'expressionCompiler34Plus/publishSigned;sonatypeBundleRelease'
if: env.SCALA_34_PLUS
if: startsWith(inputs.scala-version, '3') && !env.SCALA_30 && !env.SCALA_31_PLUS
- run: sbt 'expressionCompiler213/publishSigned;sonatypeBundleRelease'
if: startsWith(inputs.scala-version, '2.13')
- run: sbt 'expressionCompiler212/publishSigned;sonatypeBundleRelease'
Expand Down

0 comments on commit aa0dc54

Please sign in to comment.