Skip to content

Commit

Permalink
fix(ci): try to create release using softprops/action
Browse files Browse the repository at this point in the history
  • Loading branch information
davidkleiven committed Jan 6, 2025
1 parent f5ba0e0 commit e8b2b38
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions .github/workflows/semantic-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,17 +30,19 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
outputs:
release_created: ${{ steps.create_release.outputs.new_release_published }}
new_tag: ${{ steps.create_release.outputs.new_release_git_tag }}
release_notes: ${{ steps.create_release.outputs.new_release_notes }}


github-release:
needs: semantic-release
uses: statnett/github-workflows/.github/workflows/release-please.yaml@main
uses: softprops/[email protected]
with:
config-file: release-please-config.json
manifest-file: .release-please-manifest.json
secrets: inherit
tag_name: ${{ needs.semantic-release.outputs.new_tag }}
body: ${{ needs.semantic-release.outputs.release_notes }}
permissions:
contents: write
pull-requests: write


publish-to-pypi:
needs: semantic-release
Expand Down

0 comments on commit e8b2b38

Please sign in to comment.