release.yml 400 B

1234567891011121314151617181920
  1. name: Release
  2. on:
  3. push:
  4. tags:
  5. - 'v*'
  6. jobs:
  7. release:
  8. runs-on: ubuntu-latest
  9. steps:
  10. - uses: actions/checkout@v2
  11. with:
  12. fetch-depth: 0
  13. - uses: actions/setup-node@v2
  14. with:
  15. node-version: '14'
  16. - run: npx conventional-github-releaser -p angular
  17. env:
  18. CONVENTIONAL_GITHUB_RELEASER_TOKEN: ${{secrets.ACCESS_TOKEN}}