Skip to content

Commit

Permalink
bazel: fix container versioning
Browse files Browse the repository at this point in the history
Signed-off-by: Paul Meyer <[email protected]>
  • Loading branch information
katexochen committed Jul 26, 2023
1 parent 7776a89 commit 342a71f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/build-bazel-container.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ on:
- "main"
paths:
- "bazel/container/**"
- ".github/workflows/build-bazel-container.yml"
workflow_dispatch:

jobs:
Expand All @@ -23,7 +24,7 @@ jobs:
working-directory: ./bazel/container
run: |
version=$(grep "ARG BAZEL_VERSION" Containerfile | cut -d= -f2)
echo "version=${version}" | tee -a "$GITHUB_OUTPUT"
echo "version=v${version}" | tee -a "$GITHUB_OUTPUT"
- name: Docker meta
id: meta
Expand Down
2 changes: 1 addition & 1 deletion bazel/container/container.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ function setup {
}

function startBazelServer {
local containerImage="ghcr.io/edgelesssys/bazel-container:v6.2.1-0"
local containerImage="ghcr.io/edgelesssys/bazel-container:v6.2.1"
local containerName="bazeld"

setup
Expand Down

0 comments on commit 342a71f

Please sign in to comment.