Skip to content

Commit

Permalink
Merge pull request #738 from jorenn92/ci/fix-release-conditions
Browse files Browse the repository at this point in the history
ci: Wrap release conditions in ${{}}
  • Loading branch information
jorenn92 authored Jan 8, 2024
2 parents 1b5f0aa + 0564bab commit b96936c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 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

0 comments on commit b96936c

Please sign in to comment.