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.
1 parent 5c0df9a commit eeadd71Copy full SHA for eeadd71
.github/workflows/semver.yml
@@ -0,0 +1,23 @@
1
+name: Semantic Release
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - main
7
8
+jobs:
9
+ release:
10
+ runs-on: ubuntu-latest
11
+ concurrency: release
12
+ permissions:
13
+ contents: write
14
15
+ steps:
16
+ - uses: actions/checkout@v2
17
+ with:
18
+ fetch-depth: 0
19
20
+ - name: Python Semantic Release
21
+ uses: relekang/python-semantic-release@master
22
23
+ github_token: ${{ secrets.GITHUB_TOKEN }}
setup.cfg
@@ -0,0 +1,5 @@
+[semantic_release]
+upload_to_repository = false
+version_source = tag_only
+build_command = false
+upload_to_release = false
0 commit comments