1234567891011121314151617 |
- name: Release
- on:
- push:
- tags:
- - 'v*'
- jobs:
- release:
- runs-on: ubuntu-latest
- steps:
- - uses: actions/checkout@v2
- with:
- fetch-depth: 0
- - run: npx conventional-github-releaser -p angular
- env:
- CONVENTIONAL_GITHUB_RELEASER_TOKEN: ${{secrets.GITHUB_TOKEN}}
|