Skip to content

Commit

Permalink
Merge pull request #20 from EliahKagan/release-trigger
Browse files Browse the repository at this point in the history
Fix if-condition in release workflow
  • Loading branch information
Jflick58 authored Sep 16, 2023
2 parents 3de840f + 6385955 commit d5aef5e
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 @@ -15,8 +15,8 @@ env:
jobs:
if_release:
if: |
${{ github.event.pull_request.merged == true }}
&& ${{ contains(github.event.pull_request.labels.*.name, 'release') }}
github.event.pull_request.merged == true
&& contains(github.event.pull_request.labels.*.name, 'release')
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
Expand Down

0 comments on commit d5aef5e

Please sign in to comment.