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 a21b74b commit 478770eCopy full SHA for 478770e
.github/workflows/release.yml
@@ -1,22 +1,16 @@
1
name: Release Gem
2
3
on:
4
- workflow_run:
5
- workflows: ["CI"]
6
- types:
7
- - completed
8
- branches:
9
- - main
+ push:
+ tags:
+ - 'v*'
10
11
permissions:
12
contents: read
13
14
jobs:
15
push:
16
- if: |
17
- github.event.workflow_run.conclusion == 'success' &&
18
- github.repository == 'rubyatscale/chatwerk' &&
19
- startsWith(github.ref, 'refs/tags/v')
+ if: github.repository == 'rubyatscale/chatwerk'
20
runs-on: ubuntu-latest
21
environment: release
22
0 commit comments