mirror of
https://github.com/rlespinasse/github-slug-action.git
synced 2026-05-17 18:35:07 +00:00
24 lines
529 B
YAML
24 lines
529 B
YAML
name: '[v3] Release'
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- v*.x
|
|
|
|
jobs:
|
|
release:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: technote-space/auto-cancel-redundant-workflow@v1
|
|
- uses: actions/checkout@v2
|
|
- run: npm install
|
|
- run: npm run all
|
|
- uses: cycjimmy/semantic-release-action@v3
|
|
with:
|
|
extra_plugins: |
|
|
@semantic-release/changelog
|
|
@semantic-release/exec
|
|
@semantic-release/git
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|