Skip to content

Commit

Permalink
fix: BASE_IMAGE
Browse files Browse the repository at this point in the history
  • Loading branch information
fl42 committed Oct 23, 2024
1 parent 6dddca5 commit 22525f6
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/e2e.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,14 +34,18 @@ jobs:
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3

- name: Set BASE_IMAGE
run: |
echo "BASE_IMAGE=$(echo ${{ matrix.os }} | sed s/-/:/)" >> $GITHUB_ENV
- name: Build Docker image
uses: docker/build-push-action@v6
with:
file: docker/Dockerfile
tags: tls-traffic-analyzer:latest
push: false
load: true
build-args: BASE_IMAGE=$(echo ${{ matrix.os }} | sed s/-/:/)
build-args: BASE_IMAGE=$BASE_IMAGE
cache-from: type=local,src=.cache/docker
cache-to: type=local,dest=.cache/docker

Expand Down

0 comments on commit 22525f6

Please sign in to comment.