Skip to content

Commit

Permalink
feat: SKFP-905 fix variables (#8)
Browse files Browse the repository at this point in the history
  • Loading branch information
celinepelletier authored Oct 18, 2024
1 parent fb27bb6 commit 9fa0023
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/publish_artefact.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ jobs:
shell: bash
env:
tag: ${{ github.ref_name }}
SONATYPE_REALM: $OSS_SONATYPE_REALM
SONATYPE_HOST: $OSS_SONATYPE_HOST
SONATYPE_REALM: ${{ vars.OSS_SONATYPE_REALM }}
SONATYPE_HOST: ${{ vars.OSS_SONATYPE_HOST }}
SONATYPE_USERNAME: ${{ secrets.OSS_SONATYPE_USERNAME }}
SONATYPE_PASSWORD: ${{ secrets.OSS_SONATYPE_PASSWORD }}
run: |
Expand Down
1 change: 1 addition & 0 deletions version.sbt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
ThisBuild / version := sys.env.getOrElse("VERSION", "0.0.1")

0 comments on commit 9fa0023

Please sign in to comment.