mirror of
https://github.com/oven-sh/bun
synced 2026-02-02 15:08:46 +00:00
30 lines
661 B
YAML
30 lines
661 B
YAML
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 }}
|
|
token: ${{ github.token }}
|