We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 577a39e commit 8c44e30Copy full SHA for 8c44e30
.github/workflows/release.yml
@@ -0,0 +1,24 @@
1
+# Create release on change to plugin.info.txt version line
2
+# https://github.com/dokuwiki/dokuwiki/issues/3951
3
+#
4
+# Requires DOKUWIKI_USER and DOKUWIKI_PASS secrets be set in GitHub Actions
5
+
6
+name: Release
7
8
+on:
9
+ push:
10
+ branches:
11
+ - master
12
+ paths:
13
+ - "*.info.txt"
14
15
+jobs:
16
+ release:
17
+ name: Release
18
+ # https://github.com/dokuwiki/dokuwiki/pull/3966
19
+ uses: glensc/dokuwiki/.github/workflows/plugin-release.yml@39431875f734bddc35cc6b4a899bbfdec97e8aba
20
+ secrets:
21
+ DOKUWIKI_USER: ${{ secrets.DOKUWIKI_USER }}
22
+ DOKUWIKI_PASS: ${{ secrets.DOKUWIKI_PASS }}
23
24
+# vim:ts=2:sw=2:et
0 commit comments