2020-10-27 22:23:53 +08:00
|
|
|
name: release
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- preview
|
2020-11-16 02:09:36 +08:00
|
|
|
- main
|
2020-10-27 22:23:53 +08:00
|
|
|
- v*.x
|
|
|
|
tags-ignore:
|
|
|
|
- "**"
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
release:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
|
2021-02-19 11:59:02 +08:00
|
|
|
- uses: cycjimmy/semantic-release-action@v2
|
|
|
|
with:
|
|
|
|
extra_plugins: |
|
|
|
|
@semantic-release/changelog
|
|
|
|
@semantic-release/git
|
2020-10-27 22:23:53 +08:00
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ github.token }}
|