Skip to content

Commit

Permalink
Merge pull request #14 from shivjm/fix-release-please-workflow
Browse files Browse the repository at this point in the history
Fix Release Please workflow
  • Loading branch information
shivjm committed Feb 14, 2024
2 parents e330da6 + b2534da commit ad330f7
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 @@ -38,7 +38,7 @@ jobs:
tag_name: ${{ steps.release.outputs.tag_name }}
build-and-upload:
needs: [release-please]
if: ${{ jobs.release-please.outputs.release_created }}
if: ${{ needs.release-please.outputs.release_created }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
Expand All @@ -52,4 +52,4 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
gh release upload ${{ jobs.release-please.outputs.tag_name }} ./helm-kubeconform-action*
gh release upload ${{ needs.release-please.outputs.tag_name }} ./helm-kubeconform-action*

0 comments on commit ad330f7

Please sign in to comment.