Skip to content

Commit

Permalink
fixes
Browse files Browse the repository at this point in the history
Signed-off-by: FabioPinheiro <[email protected]>
  • Loading branch information
FabioPinheiro committed Nov 26, 2024
1 parent 8632cde commit ef60101
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 13 deletions.
20 changes: 10 additions & 10 deletions .github/workflows/integration-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,12 +56,12 @@ jobs:
with:
node-version: "lts/*"

- name: Login to GitHub Container Registry
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ env.GITHUB_ACTOR }}
password: ${{ env.GITHUB_TOKEN }}
# - name: Login to GitHub Container Registry
# uses: docker/login-action@v2
# with:
# registry: ghcr.io
# username: ${{ env.GITHUB_ACTOR }}
# password: ${{ env.GITHUB_TOKEN }}

- name: Install Compose
uses: ndeloof/[email protected]
Expand All @@ -73,10 +73,10 @@ jobs:
env:
NODE_OPTIONS: "--openssl-legacy-provider"
run: |
sbt -mem 2048 -J-Xmx5120m docker:publishLocal
MEDIATOR_VERSION=$(cut version.sbt -d '=' -f2 | tr -d '" ')
echo "MEDIATOR_VERSION=${MEDIATOR_VERSION}" >> $GITHUB_ENV
echo ${MEDIATOR_VERSION}
sbt -mem 2048 -J-Xmx5120m "set ThisBuild / version := \"tmp\"" docker:publishLocal
# MEDIATOR_VERSION=$(cut version.sbt -d '=' -f2 | tr -d '" ')
# echo "MEDIATOR_VERSION=${MEDIATOR_VERSION}" >> $GITHUB_ENV
# echo ${MEDIATOR_VERSION}
- name: Start Mediator
uses: isbang/[email protected]
with:
Expand Down
6 changes: 3 additions & 3 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -287,10 +287,10 @@ lazy val webapp = project
import sbtrelease.ReleasePlugin.autoImport.ReleaseTransformations.*
releaseProcess := Seq[ReleaseStep](
checkSnapshotDependencies,
// inquireVersions,
inquireVersions,
runClean,
runTest,
// setReleaseVersion,
setReleaseVersion,
ReleaseStep(releaseStepTask(mediator / Docker / stage)),
// setNextVersion
setNextVersion
)

0 comments on commit ef60101

Please sign in to comment.