tag.yml 397 B

123456789101112131415161718192021
  1. name: Tag
  2. on:
  3. push:
  4. paths-ignore:
  5. - ".github/**"
  6. - "README.md"
  7. - ".gitignore"
  8. branches:
  9. - master
  10. jobs:
  11. tag:
  12. name: Tag release
  13. runs-on: ubuntu-latest
  14. steps:
  15. - uses: actions/checkout@v2
  16. - uses: mathieudutour/github-tag-action@v4.5
  17. id: tag_version
  18. with:
  19. github_token: ${{ secrets.PAT }}
  20. tag_prefix: "v"