Skip to content

Commit 8c44e30

Browse files
committed
Add release workflow
1 parent 577a39e commit 8c44e30

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

.github/workflows/release.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)