Skip to content

Commit

Permalink
change the conditional for running rt
Browse files Browse the repository at this point in the history
  • Loading branch information
Juan Manuel "Kang" Perez committed Jun 7, 2024
1 parent f524632 commit f0c6170
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/lint-and-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
outputs:
is-empty: ${{ steps.empty.outputs.is-empty }}
is-held: ${{ steps.held.outputs.is-held }}
skip-release: ${{ steps.empty.outputs.is-empty == 'true' || steps.held.outputs.is-held == 'true' }}
skip-release: ${{ steps.empty.outputs.is-empty == 'false' && steps.held.outputs.is-held == 'false' }}
next-version: ${{ steps.version.outputs.next-version }}

steps:
Expand All @@ -65,13 +65,13 @@ jobs:
uses: newrelic/release-toolkit/is-held@v1

- name: Link dependencies
if: ${{ steps.empty.outputs.is-empty == 'true' || steps.held.outputs.is-held == 'true' }}
if: ${{ steps.empty.outputs.is-empty == 'false' && steps.held.outputs.is-held == 'false' }}
uses: newrelic/release-toolkit/link-dependencies@v1
with:
dictionary: .github/rt-dictionary.yaml

- name: Calculate next version
if: ${{ steps.empty.outputs.is-empty == 'true' || steps.held.outputs.is-held == 'true' }}
if: ${{ steps.empty.outputs.is-empty == 'false' && steps.held.outputs.is-held == 'false' }}
id: version
uses: newrelic/release-toolkit/next-version@v1

Expand Down

0 comments on commit f0c6170

Please sign in to comment.