diff --git a/.github/workflows/integration-tests.yml b/.github/workflows/integration-tests.yml index cc19d1de..094aefec 100644 --- a/.github/workflows/integration-tests.yml +++ b/.github/workflows/integration-tests.yml @@ -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/install-compose-action@v0.0.1 @@ -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/compose-action@v1.4.1 with: diff --git a/build.sbt b/build.sbt index cc9710c3..ac699eb3 100644 --- a/build.sbt +++ b/build.sbt @@ -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 )