conventional-changelog-action/.github/workflows/release.yml

19 lines
306 B
YAML

name: 'release'
on:
push:
branches:
- 'releases/*'
jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- run: yarn --production
- run: git add node_modules -f
- uses: ./
with:
github-token: ${{ secrets.github_token }}