Skip to content

Commit 191694d

Browse files
committed
add bump-version.yml
1 parent 8e5b949 commit 191694d

1 file changed

Lines changed: 24 additions & 0 deletions

File tree

.github/workflows/bump-version.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: Bump Version
2+
3+
on:
4+
workflow_dispatch:
5+
inputs:
6+
version:
7+
description: "Update Version"
8+
required: true
9+
default: "7.0.0"
10+
11+
jobs:
12+
bump-version:
13+
runs-on: ubuntu-latest
14+
15+
16+
steps:
17+
- name: Checkout code
18+
uses: actions/checkout@v3
19+
20+
- name: Write Version to file
21+
run: |
22+
cd projects/behave
23+
echo "{:version $${{ github.event.inputs.version }}}" > resources/version.edn
24+

0 commit comments

Comments
 (0)