Skip to content

Commit

Permalink
ci: fix broken with-docker-images trigger
Browse files Browse the repository at this point in the history
  • Loading branch information
jorenn92 committed Jan 8, 2024
1 parent 6d0d3b5 commit 404c324
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ on:

jobs:
semantic-release:
if: github.triggering_actor == github.repository_owner
if: ${{ github.triggering_actor == github.repository_owner }}
name: Tag and release latest version
runs-on: ubuntu-22.04
steps:
Expand All @@ -39,7 +39,7 @@ jobs:
fi
build-docker-image:
if: github.triggering_actor == github.repository_owner && github.event.inputs.with-docker-images == true
if: ${{ github.triggering_actor == github.repository_owner && github.event.inputs.with-docker-images == 'true' }}
name: Build and push docker images
needs: semantic-release
runs-on: ubuntu-latest
Expand Down Expand Up @@ -88,4 +88,4 @@ jobs:
ghcr.io/jorenn92/maintainerr:latest
jorenn92/maintainerr:${{ steps.package-version.outputs.current-version}}
jorenn92/maintainerr:latest
labels: ${{ steps.meta.outputs.labels }}
labels: ${{ steps.meta.outputs.labels }}

0 comments on commit 404c324

Please sign in to comment.