Skip to content

Commit

Permalink
Merge pull request #405 from bullet-train-co/jeremy/release-workflow
Browse files Browse the repository at this point in the history
Getting started on a release workflow
  • Loading branch information
jagthedrummer authored Aug 14, 2023
2 parents f00b0dd + b542131 commit f55ccc4
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: "Release Ruby Gems & NPM Packages"

on:
workflow_dispatch:
inputs:
versionBump:
description: 'Version Bump'
required: true
default: 'patch'
type: choice
options:
- patch
- minor
- major

permissions:
contents: write
pull-requests: write

jobs:
release:
runs-on: ubunto-latest

steps:
- uses: "actions/checkout@v3"

- uses: "ruby/setup-ruby@v1"
with:
bundler-cache: true




0 comments on commit f55ccc4

Please sign in to comment.