mirror of
https://github.com/shizand/statapp.git
synced 2024-12-23 20:22:58 +03:00
30 lines
662 B
YAML
30 lines
662 B
YAML
|
name: Release
|
||
|
|
||
|
on:
|
||
|
push:
|
||
|
branches:
|
||
|
- main
|
||
|
|
||
|
jobs:
|
||
|
release:
|
||
|
name: release
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- name: Checkout
|
||
|
uses: actions/checkout@v4
|
||
|
|
||
|
- name: Semantic Release
|
||
|
uses: cycjimmy/semantic-release-action@м4
|
||
|
with:
|
||
|
branches: |
|
||
|
[
|
||
|
'+([0-9])?(.{+([0-9]),x}).x',
|
||
|
'main'
|
||
|
]
|
||
|
extra_plugins: |
|
||
|
@semantic-release/commit-analyzer
|
||
|
@semantic-release/release-notes-generator
|
||
|
@semantic-release/git
|
||
|
@semantic-release/changelog
|
||
|
env:
|
||
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|