We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 402c0b5 + a1c50c7 commit dedcb9dCopy full SHA for dedcb9d
.github/workflows/release.yml
@@ -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