Skip to content

Commit

Permalink
Fix missing folder copy for building image (#514)
Browse files Browse the repository at this point in the history
  • Loading branch information
grieve54706 authored Apr 3, 2024
1 parent 641f979 commit e21a2a2
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions .github/workflows/build-dev-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ 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: 1 addition & 0 deletions .github/workflows/build-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ 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:${{ steps.prepare_tag.outputs.tag_name }} \
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/stable-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@ 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:${{ steps.maven_prepare_release.outputs.version_number }} \
Expand Down

0 comments on commit e21a2a2

Please sign in to comment.