Skip to content

Commit

Permalink
Remove unused command in image building flow (#642)
Browse files Browse the repository at this point in the history
  • Loading branch information
goldmedal authored Jun 28, 2024
1 parent 35553c7 commit 6793f37
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 3 deletions.
1 change: 0 additions & 1 deletion .github/workflows/build-dev-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@ jobs:
LATEST_COMMIT=$(git log -1 --pretty=%h)
cd ./docker
cp ../wren-server/target/wren-server-${WREN_VERSION}-executable.jar ./
cp -r ../wren-sqlglot-server/ ./
docker buildx build \
--platform linux/amd64,linux/arm64 \
--tag ghcr.io/canner/wren-engine:main-${LATEST_COMMIT} \
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/build-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,6 @@ jobs:
WREN_VERSION=$(./mvnw --quiet help:evaluate -Dexpression=project.version -DforceStdout)
cd ./docker
cp ../wren-server/target/wren-server-${WREN_VERSION}-executable.jar ./
cp -r ../wren-sqlglot-server/ ./
docker buildx build \
--platform linux/amd64,linux/arm64 \
--tag ghcr.io/canner/wren-engine:$TAG_NAME \
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/stable-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,6 @@ jobs:
WREN_VERSION=$(./mvnw --quiet help:evaluate -Dexpression=project.version -DforceStdout)
cd ./docker
cp ../wren-server/target/wren-server-${WREN_VERSION}-executable.jar ./
cp -r ../wren-sqlglot-server/ ./
docker buildx build \
--platform linux/amd64,linux/arm64 \
--tag ghcr.io/canner/wren-engine:${{ needs.prepare-version.outputs.maven_version }} \
Expand Down

0 comments on commit 6793f37

Please sign in to comment.