Skip to content

Commit

Permalink
build: use correct format
Browse files Browse the repository at this point in the history
  • Loading branch information
akikanellis committed Jan 26, 2024
1 parent 49a65fe commit 368a780
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build-main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ jobs:
lint:
name: Lint
needs: release
if: needs.release.outputs.release-published
if: needs.release.outputs.release-published == 'true'
uses: ./.github/workflows/lint.yml
permissions:
contents: read
Expand All @@ -98,7 +98,7 @@ jobs:
test:
name: Test
needs: release
if: needs.release.outputs.release-published
if: needs.release.outputs.release-published == 'true'
uses: ./.github/workflows/test.yml
permissions:
contents: read
Expand All @@ -112,7 +112,7 @@ jobs:
test-release:
name: Test release
needs: release
if: needs.release.outputs.release-published
if: needs.release.outputs.release-published == 'true'
runs-on: ubuntu-latest
permissions:
contents: read
Expand Down

0 comments on commit 368a780

Please sign in to comment.