Skip to content

Commit

Permalink
fix: add missing backslash
Browse files Browse the repository at this point in the history
  • Loading branch information
vpa1977 committed Jan 14, 2025
1 parent 768bfcc commit cdcd064
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ jobs:
run: |
docker build \
-t ${{ env.build-image-name }} \
--build-arg ARCH=${{ matrix.arch }}
--build-arg ARCH=${{ matrix.arch }} \
--build-arg UID=$(id -u ${USER}) \
--build-arg GID=$(id -g ${USER}) \
-f tests/containers/builder/Dockerfile.${{ matrix.ubuntu-release }} \
Expand All @@ -75,7 +75,7 @@ jobs:
run: |
docker build \
-t ${{ env.maven-image-name }} \
--build-arg ARCH=${{ matrix.arch }}
--build-arg ARCH=${{ matrix.arch }} \
--build-arg UID=$(id -u ${USER}) \
--build-arg GID=$(id -g ${USER}) \
--build-arg BASE_IMAGE=${{ env.image-name }} \
Expand Down

0 comments on commit cdcd064

Please sign in to comment.