Skip to content

Commit

Permalink
ci: gha env var quote fix
Browse files Browse the repository at this point in the history
  • Loading branch information
kba committed Jul 16, 2024
1 parent fb29d86 commit 061228c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/docker-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ jobs:
steps:
- name: Export variables
run: |
echo "DOCKER_BASE_TAG='${{ env.DOCKER_BASE_TAG }}'" >> $GITHUB_ENV
echo "DOCKER_BUILD='${{ env.DOCKER_BUILD }}'" >> $GITHUB_ENV
echo "DOCKER_BASE_TAG=${{ env.DOCKER_BASE_TAG }}" >> $GITHUB_ENV
echo "DOCKER_BUILD=${{ env.DOCKER_BUILD }}" >> $GITHUB_ENV
- name: Checkout
uses: actions/checkout@v4
with:
Expand Down

0 comments on commit 061228c

Please sign in to comment.