You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

25 lines
603 B

  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. name: Release
  6. on:
  7. push:
  8. branches:
  9. - master
  10. paths:
  11. - "*.info.txt"
  12. jobs:
  13. release:
  14. name: Release
  15. # https://github.com/dokuwiki/dokuwiki/pull/3966
  16. uses: glensc/dokuwiki/.github/workflows/plugin-release.yml@39431875f734bddc35cc6b4a899bbfdec97e8aba
  17. secrets:
  18. DOKUWIKI_USER: ${{ secrets.DOKUWIKI_USER }}
  19. DOKUWIKI_PASS: ${{ secrets.DOKUWIKI_PASS }}
  20. # vim:ts=2:sw=2:et