Skip to content

Commit fb3d839

Browse files
authored
Release versioning
1 parent 3ae13b2 commit fb3d839

1 file changed

Lines changed: 24 additions & 0 deletions

File tree

release.yaml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: Automated Release
2+
on:
3+
push:
4+
branches:
5+
- main # Or 'master' depending on your default branch name
6+
7+
jobs:
8+
release:
9+
name: Release
10+
runs-on: ubuntu-latest
11+
permissions:
12+
contents: write
13+
issues: write
14+
pull-requests: write
15+
steps:
16+
- name: Checkout
17+
uses: actions/checkout@v4
18+
with:
19+
fetch-depth: 0 # Essential: tells the tool to look at history
20+
21+
- name: Semantic Release
22+
uses: cycjimmy/semantic-release-action@v4
23+
env:
24+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)