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 a8260a8 commit 53bd8c1Copy full SHA for 53bd8c1
.github/workflows/release.yml
@@ -0,0 +1,24 @@
1
+name: Release
2
+
3
+on:
4
+ workflow_run:
5
+ workflows: ["Test"]
6
+ types: [completed]
7
+ branches: ["main"]
8
9
+permissions:
10
+ contents: write
11
+ pull-requests: read
12
13
+jobs:
14
+ release:
15
+ runs-on: "ubuntu-latest"
16
+ if: ${{ github.event.workflow_run.conclusion == 'success' }}
17
18
+ steps:
19
+ - uses: rymndhng/release-on-push-action@master
20
+ with:
21
+ bump_version_scheme: minor
22
+ tag_prefix: v
23
+ env:
24
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
0 commit comments