Skip to content

Commit

Permalink
Fix image tagging
Browse files Browse the repository at this point in the history
  • Loading branch information
cgeller authored Jan 31, 2024
1 parent 691f170 commit 7d0c701
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
- name: Set image tag
run: |
echo "IMAGE_TAG_SUFFIX=_$(echo '${{ github.ref_name }}' | tr / -)_ci" >> $GITHUB_ENV
if: github.ref.name != github.event.repository.default_branch
if: github.ref_name != github.event.repository.default_branch

- uses: actions/checkout@v3
name: Checkout repository
Expand Down Expand Up @@ -78,7 +78,7 @@ jobs:
- name: Set image tag
run: |
echo "IMAGE_TAG_SUFFIX=_$(echo '${{ github.ref_name }}' | tr / -)_ci" >> $GITHUB_ENV
if: github.ref.name != github.event.repository.default_branch
if: github.ref_name != github.event.repository.default_branch

# provide carla-package
- uses: shrink/actions-docker-extract@v3
Expand Down Expand Up @@ -144,7 +144,7 @@ jobs:
- name: Set image tag
run: |
echo "IMAGE_TAG_SUFFIX=_$(echo '${{ github.ref_name }}' | tr / -)_ci" >> $GITHUB_ENV
if: github.ref.name != github.event.repository.default_branch
if: github.ref_name != github.event.repository.default_branch

- uses: docker/login-action@v3
name: Login to Docker Hub
Expand Down

0 comments on commit 7d0c701

Please sign in to comment.