statapp/.github/workflows/release.yml

38 lines
823 B
YAML
Raw Normal View History

name: Release
on:
push:
branches:
- main
permissions:
contents: write
pull-requests: write
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
2023-09-26 12:50:45 +03:00
conventional-changelog-conventionalcommits
env:
2023-09-26 12:50:45 +03:00
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}