Skip to content

Commit

Permalink
Merge pull request #32 from customerio/feature/add-versioned-release-…
Browse files Browse the repository at this point in the history
…actions

Add versioned release actions
  • Loading branch information
stephen-pope-customer-io authored Dec 1, 2023
2 parents 8c9a6f6 + 88247c7 commit 74e6124
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 53 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/release_hotfix.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
name: Release hotfix from master

on:
workflow_dispatch:

jobs:
release:
uses: customerio/gist-workflows/.github/workflows/release_hotfix_version.yml@master
secrets: inherit
21 changes: 21 additions & 0 deletions .github/workflows/release_version.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Release new version from develop

on:
workflow_dispatch:
inputs:
component:
description: 'Semantic version component to bump'
type: choice
required: true
options:
- 'patch'
- 'minor'
- 'major'
default: 'patch'

jobs:
release:
uses: customerio/gist-workflows/.github/workflows/release_version.yml@master
secrets: inherit
with:
component: ${{ inputs.component }}
53 changes: 0 additions & 53 deletions .github/workflows/trigger-release.yml

This file was deleted.

0 comments on commit 74e6124

Please sign in to comment.