We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9917c20 commit 2920a0fCopy full SHA for 2920a0f
README.md
@@ -6,9 +6,10 @@ This workflow will publish a release corresponding to the given tag.
6
7
You can use this workflow using the following Github Actions configuration.
8
The only requirement is the presence of the `glpi-project/tools` in the composer (dev) dependencies of the plugin.
9
+This workflow will require the `contents: "write"` permission to be able to create a release.
10
11
```yaml
-name: "Plugin release"
12
+name: "Publish release"
13
14
on:
15
push:
@@ -17,6 +18,8 @@ on:
17
18
19
jobs:
20
publish-release:
21
+ permissions:
22
+ contents: "write"
23
name: "Publish release"
24
uses: "glpi-project/plugin-release-workflows/.github/workflows/publish-release.yml@v1"
25
with:
0 commit comments