Skip to content

Commit fa6a058

Browse files
committed
ci: Fix release please
1 parent 3f8251a commit fa6a058

File tree

2 files changed

+18
-2
lines changed

2 files changed

+18
-2
lines changed

.github/workflows/release.yml

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,17 @@ on:
55
branches:
66
- main
77

8+
permissions:
9+
contents: write
10+
pull-requests: write
11+
812
jobs:
913
release:
10-
uses: mindkomm/workflows/.github/workflows/release.yml@main
14+
name: Release
15+
runs-on: ubuntu-latest
16+
steps:
17+
- uses: googleapis/release-please-action@v4
18+
with:
19+
target-branch: ${{ github.ref_name }}
20+
config-file: release-please-config.json
21+
manifest-file: .release-please-manifest.json

release-please-config.json

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,12 @@
11
{
22
"$schema": "https://raw.githubusercontent.com/googleapis/release-please/main/schemas/config.json",
33
"release-type": "php",
4+
"prerelease": false,
5+
"draft": false,
6+
"pull-request-header": "Release-please has created a release",
47
"packages": {
5-
".": {}
8+
".": {
9+
"changelog-path": "CHANGELOG.md"
10+
}
611
}
712
}

0 commit comments

Comments
 (0)