Skip to content

Commit

Permalink
fix: udpate release-please condition
Browse files Browse the repository at this point in the history
  • Loading branch information
spaenleh committed Dec 11, 2023
1 parent 9af3ce5 commit 851087d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release-please.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:

# put created tag in an env variable to be sent to the dispatch
- name: Set tag
if: ${{ steps.release.outputs.releases_created }}
if: ${{ steps.release.outputs.releases_created == "true" }}
id: set-tag
run: |
REPOSITORY=$(echo '${{ github.repository }}')
Expand All @@ -28,7 +28,7 @@ jobs:
# Trigger an 'on: repository_dispatch' workflow to run in graasp-deploy repository
- name: Push tag to Graasp Deploy (Staging)
if: ${{ steps.release.outputs.releases_created }}
if: ${{ steps.release.outputs.releases_created == "true" }}
uses: peter-evans/repository-dispatch@v2
with:
token: ${{ secrets.REPO_ACCESS_TOKEN }}
Expand Down

0 comments on commit 851087d

Please sign in to comment.