From 642b1a03dfb7e54e0914b84445bcf39c922ae5a8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Elan=20Ruusam=C3=A4e?= Date: Fri, 1 Mar 2024 15:37:03 +0200 Subject: [PATCH] Create workflow to create tag on plugin.info.txt change --- .github/workflows/release.yml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 .github/workflows/release.yml diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml new file mode 100644 index 0000000..35bb09d --- /dev/null +++ b/.github/workflows/release.yml @@ -0,0 +1,24 @@ +# Create release on change to plugin.info.txt version line +# https://github.com/dokuwiki/dokuwiki/issues/3951 +# +# Requires DOKUWIKI_USER and DOKUWIKI_PASS secrets be set in GitHub Actions + +name: Release + +on: + push: + branches: + - main + paths: + - "*.info.txt" + +jobs: + release: + name: Release + # https://github.com/dokuwiki/dokuwiki/pull/3966 + uses: glensc/dokuwiki/.github/workflows/plugin-release.yml@39431875f734bddc35cc6b4a899bbfdec97e8aba + secrets: + DOKUWIKI_USER: ${{ secrets.DOKUWIKI_USER }} + DOKUWIKI_PASS: ${{ secrets.DOKUWIKI_PASS }} + +# vim:ts=2:sw=2:et