Skip to content

Commit

Permalink
ci: Fix release please
Browse files Browse the repository at this point in the history
  • Loading branch information
gchtr committed Sep 23, 2024
1 parent 3f8251a commit fa6a058
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 2 deletions.
13 changes: 12 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,17 @@ on:
branches:
- main

permissions:
contents: write
pull-requests: write

jobs:
release:
uses: mindkomm/workflows/.github/workflows/release.yml@main
name: Release
runs-on: ubuntu-latest
steps:
- uses: googleapis/release-please-action@v4
with:
target-branch: ${{ github.ref_name }}
config-file: release-please-config.json
manifest-file: .release-please-manifest.json
7 changes: 6 additions & 1 deletion release-please-config.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,12 @@
{
"$schema": "https://raw.githubusercontent.com/googleapis/release-please/main/schemas/config.json",
"release-type": "php",
"prerelease": false,
"draft": false,
"pull-request-header": "Release-please has created a release",
"packages": {
".": {}
".": {
"changelog-path": "CHANGELOG.md"
}
}
}

0 comments on commit fa6a058

Please sign in to comment.