Skip to content
This repository has been archived by the owner on Jan 26, 2024. It is now read-only.

Commit

Permalink
Add new release actions
Browse files Browse the repository at this point in the history
  • Loading branch information
stephen-pope-customer-io committed Nov 29, 2023
1 parent 4d2478d commit eadf83b
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 15 deletions.
15 changes: 0 additions & 15 deletions .github/workflows/release.yml

This file was deleted.

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 }}

0 comments on commit eadf83b

Please sign in to comment.