Skip to content

Commit

Permalink
Create workflow to create tag on plugin.info.txt change
Browse files Browse the repository at this point in the history
  • Loading branch information
glensc committed Mar 1, 2024
1 parent a8bc9fb commit 642b1a0
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .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

0 comments on commit 642b1a0

Please sign in to comment.