Skip to content

Commit 11bda8f

Browse files
authored
Merge pull request #67 from tjholm/fix-release-actions
fix release actions
2 parents 7319d6e + f0a7bd2 commit 11bda8f

File tree

2 files changed

+4
-8
lines changed

2 files changed

+4
-8
lines changed

.github/workflows/rc-release.yaml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,12 @@
11
name: Release Candidate
22
on:
3-
pull_request:
4-
types: [closed]
3+
push:
54
branches:
6-
- 'develop'
5+
- develop
76

87
jobs:
98
# Bump the SDK version
109
version_bump:
11-
if: github.event.pull_request.merged == true
1210
name: Bump Version and Create Release
1311
runs-on: ubuntu-latest
1412
outputs:

.github/workflows/release.yaml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,11 @@
11
name: Production Release
22
on:
3-
pull_request:
4-
types: [closed]
3+
push:
54
branches:
6-
- 'main'
5+
- main
76
jobs:
87
# Bump the SDK version
98
version_bump:
10-
if: github.event.pull_request.merged == true
119
name: Bump Version and Create Release
1210
runs-on: ubuntu-latest
1311
outputs:

0 commit comments

Comments
 (0)