GitHub actions

This commit is contained in:
Jarred Sumner
2024-06-17 19:50:32 -07:00
parent 8b4ec84fb1
commit 748209f79b
2 changed files with 66 additions and 0 deletions

28
.github/workflows/test-bump.yml vendored Normal file
View File

@@ -0,0 +1,28 @@
name: Test Bump version
on:
workflow_dispatch:
inputs:
version:
type: string
description: What is the release tag? (e.g. "1.0.2", "canary")
required: true
jobs:
bump:
name: "Bump version"
runs-on: ubuntu-latest
permissions:
pull-requests: write
contents: write
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Bun
uses: ./.github/actions/setup-bun
with:
bun-version: "1.1.12"
- name: Bump version
uses: ./.github/actions/bump
with:
version: ${{ inputs.version }}