Skip to content

Commit f28b497

Browse files
committed
add add-tag workflow
1 parent c1d1704 commit f28b497

File tree

2 files changed

+30
-133
lines changed

2 files changed

+30
-133
lines changed

.github/workflows/add-tag.yml

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
name: add tag
2+
3+
on:
4+
workflow_dispatch:
5+
inputs:
6+
bump:
7+
type: choice
8+
description: 'Bump the version'
9+
required: true
10+
options:
11+
- major
12+
- minor
13+
- patch
14+
15+
16+
jobs:
17+
add-tag:
18+
runs-on: ubuntu-latest
19+
steps:
20+
- name: Checkout
21+
uses: actions/checkout@v3
22+
23+
- name: Setup git-bump
24+
uses: KeisukeYamashita/[email protected]
25+
with:
26+
repository: babarot/git-bump
27+
arch: x86_64
28+
29+
- name: Bump version
30+
run: git-bump ${{ github.event.inputs.bump }}

README.md

-133
This file was deleted.

0 commit comments

Comments
 (0)