Skip to content

Commit

Permalink
Fix workflow syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
anodar committed Jan 25, 2024
1 parent 32ea163 commit 991f055
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions .github/workflows/release-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,10 @@ jobs:
uses: docker/setup-buildx-action@v1

- name: Check PR Label For Release label
if: !contains(github.event.pull_request.labels.*.name, 'release')
run: |
if contains(github.event.pull_request.labels.*.name, 'release')
echo "Release candidate."
else
echo "Not a release candidate. Skipping workflow."
exit 0
fi
echo "Not a release candidate. Skipping workflow."
exit 0
- name: Build nitro-fuzzer Docker Image
run: docker build --target nitro-fuzzer -t nitro-fuzzer .
Expand Down

0 comments on commit 991f055

Please sign in to comment.