mirror of
https://github.com/shizand/statapp.git
synced 2024-12-23 20:22:58 +03:00
32 lines
709 B
YAML
32 lines
709 B
YAML
name: Release
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
|
|
jobs:
|
|
release:
|
|
name: release
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
with:
|
|
persist-credentials: false
|
|
|
|
- name: Semantic Release
|
|
uses: cycjimmy/semantic-release-action@v4
|
|
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.PAT_TOKEN }} |