Skip to content

Commit

Permalink
chore: Fix release created comparison
Browse files Browse the repository at this point in the history
  • Loading branch information
keelerm84 committed Aug 12, 2024
1 parent c8402c2 commit 0d09780
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release-please.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,15 +17,15 @@ jobs:
id: release

- uses: actions/checkout@v4
if: ${{ steps.release.outputs.releases_created }}
if: ${{ steps.release.outputs.releases_created == 'true' }}
with:
fetch-depth: 0 # If you only need the current version keep this.

- uses: ./.github/actions/ci
if: ${{ steps.release.outputs.releases_created }}
if: ${{ steps.release.outputs.releases_created == 'true' }}

- name: Upload Release Artifact
if: ${{ steps.release.outputs.release_created }}
if: ${{ steps.release.outputs.release_created == 'true' }}
uses: ./.github/actions/publish
with:
token: ${{ secrets.GITHUB_TOKEN }}
Expand Down

0 comments on commit 0d09780

Please sign in to comment.