This commit is contained in:
32
.github/workflows/semantic-release.yml
vendored
Normal file
32
.github/workflows/semantic-release.yml
vendored
Normal file
@@ -0,0 +1,32 @@
|
||||
name: Semantic Release
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
- master
|
||||
workflow_dispatch:
|
||||
|
||||
permissions:
|
||||
contents: write
|
||||
issues: write
|
||||
pull-requests: write
|
||||
|
||||
jobs:
|
||||
release:
|
||||
name: Release
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v6
|
||||
with:
|
||||
fetch-depth: 0
|
||||
|
||||
- name: Setup semantic-release
|
||||
uses: gitea.ldpt.fr/actions/semantic-release/setup-semantic-release@master
|
||||
with:
|
||||
node-version: "24"
|
||||
|
||||
- name: Run semantic-release
|
||||
run: npx semantic-release
|
||||
Reference in New Issue
Block a user