Skip to content

Commit dedcb9d

Browse files
author
Kenny
authored
Merge pull request #12 from WarriorOfWire/tagger
add release tagger
2 parents 402c0b5 + a1c50c7 commit dedcb9d

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

.github/workflows/release.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# This workflow will install Python dependencies, run tests and lint with a variety of Python versions
2+
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
3+
4+
name: Release
5+
6+
on:
7+
push:
8+
branches: [ main ]
9+
workflow_dispatch:
10+
11+
jobs:
12+
release:
13+
runs-on: ubuntu-latest
14+
steps:
15+
- name: Set release
16+
id: semrel
17+
uses: go-semantic-release/action@v1
18+
with:
19+
github-token: ${{ secrets.GITHUB_TOKEN }}
20+
allow-initial-development-versions: true
21+
force-bump-patch-version: true

0 commit comments

Comments
 (0)