Skip to content

Commit

Permalink
Merge pull request #67 from tjholm/fix-release-actions
Browse files Browse the repository at this point in the history
fix release actions
  • Loading branch information
tjholm authored Oct 24, 2022
2 parents 7319d6e + f0a7bd2 commit 11bda8f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 8 deletions.
6 changes: 2 additions & 4 deletions .github/workflows/rc-release.yaml
Original file line number Diff line number Diff line change
@@ -1,14 +1,12 @@
name: Release Candidate
on:
pull_request:
types: [closed]
push:
branches:
- 'develop'
- develop

jobs:
# Bump the SDK version
version_bump:
if: github.event.pull_request.merged == true
name: Bump Version and Create Release
runs-on: ubuntu-latest
outputs:
Expand Down
6 changes: 2 additions & 4 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
@@ -1,13 +1,11 @@
name: Production Release
on:
pull_request:
types: [closed]
push:
branches:
- 'main'
- main
jobs:
# Bump the SDK version
version_bump:
if: github.event.pull_request.merged == true
name: Bump Version and Create Release
runs-on: ubuntu-latest
outputs:
Expand Down

0 comments on commit 11bda8f

Please sign in to comment.