Skip to content

Commit

Permalink
Merge pull request #8 from maykinmedia/hotfix/docker-image-push
Browse files Browse the repository at this point in the history
🐛 fixed docker image push when merged to master
  • Loading branch information
joeribekker authored May 21, 2024
2 parents c802c48 + 03b9f59 commit 6072e2b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ jobs:

name: Push Docker image
runs-on: ubuntu-latest
if: github.event_name == 'push' && github.repository_owner == 'referentielijsten' # exclude PRs/forks
if: github.event_name == 'push' # exclude PRs

steps:
- uses: actions/checkout@v4
Expand All @@ -191,7 +191,7 @@ jobs:
[[ "${{ github.ref }}" == "refs/tags/"* ]] && VERSION=$(echo $VERSION | sed -e 's/^v//')
# Use Docker `latest` tag convention
[ "$VERSION" == "main" ] && VERSION=latest
[ "$VERSION" == "master" ] && VERSION=latest
echo "tag=${VERSION}" >> $GITHUB_OUTPUT
Expand Down

0 comments on commit 6072e2b

Please sign in to comment.