Skip to content

Commit

Permalink
fix docker command
Browse files Browse the repository at this point in the history
  • Loading branch information
an-tex committed Jul 24, 2023
1 parent 2164345 commit d38db02
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
java-version: 17
cache: sbt

- run: docker compose -d
- run: docker compose up -d

- name: Check that workflows are up to date
run: sbt '++ ${{ matrix.scala }}' githubWorkflowCheck
Expand Down Expand Up @@ -81,7 +81,7 @@ jobs:
java-version: 17
cache: sbt

- run: docker compose -d
- run: docker compose up -d

- name: Download target directories (2.13.11)
uses: actions/download-artifact@v3
Expand Down
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -406,7 +406,7 @@ inThisBuild(Seq(
"SONATYPE_USERNAME" -> "${{ secrets.SONATYPE_USERNAME }}"
)
)),
githubWorkflowJobSetup += WorkflowStep.Run(List("docker compose -d")),
githubWorkflowJobSetup += WorkflowStep.Run(List("docker compose up -d")),
githubWorkflowPublishTargetBranches := Seq(RefPredicate.StartsWith(Ref.Tag("v"))),
versionScheme := Some("early-semver"),
dependencyOverrides ++= Dependencies.overrides ++ Seq(
Expand Down

0 comments on commit d38db02

Please sign in to comment.