Skip to content

Commit

Permalink
Merge pull request #21 from ricardogsilva/20-docker-image-publishing-…
Browse files Browse the repository at this point in the history
…on-ci-not-working

fix docker image publishing not working
  • Loading branch information
francbartoli authored Feb 16, 2024
2 parents 52e786f + 02b9b11 commit 4287370
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ on:
- cron: "30 12 * * *" # runs everyday at 12h30

env:
PUBLISH_IMAGE: ${{ (github.ref == 'main' || github.ref_type == 'tag') && 'TRUE' || 'FALSE'}}
IMAGE_TAG: ${{ github.ref == 'main' && 'latest' || github.ref_name }}
PUBLISH_IMAGE: ${{ (github.ref_name == 'main' || github.ref_type == 'tag') && 'TRUE' || 'FALSE'}}
IMAGE_TAG: ${{ github.ref_name == 'main' && 'latest' || github.ref_name }}
IMAGE_NAME: ghcr.io/${{ github.repository }}/arpav-ppcv-backend

jobs:
Expand Down

0 comments on commit 4287370

Please sign in to comment.