Skip to content

Commit

Permalink
ci: test
Browse files Browse the repository at this point in the history
  • Loading branch information
rndquu committed May 20, 2024
1 parent ac4a8a4 commit db00ab2
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/bump-version.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Bump Version

on:
workflow_dispatch:
inputs:
bump:
description: 'bump type, major or minor or patch or empty string'
default: ''

jobs:
release:
runs-on: ubuntu-latest
steps:
- name: Checkout repository code
uses: actions/checkout@v4

- name: Install Node
uses: actions/setup-node@v4
with:
node-version: "20.10.0"
registry-url: https://registry.npmjs.org/

- name: Bump version
uses: MeilCli/bump-release-action@v2
with:
bump: ${{ github.event.inputs.bump }}

0 comments on commit db00ab2

Please sign in to comment.