Skip to content

Commit 6846806

Browse files
committed
start of release workflow
1 parent e1ce78a commit 6846806

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed

.github/workflows/release.yml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
on:
2+
workflow_dispatch:
3+
inputs:
4+
version:
5+
type: string
6+
description: Semver version to release
7+
snapshot:
8+
type: boolean
9+
description: Create snapshot release
10+
default: true
11+
skip_publish:
12+
type: boolean
13+
description: Ship publish to Maven Central
14+
default: false
15+
16+
name: Release
17+
run-name: Release
18+
19+
permissions:
20+
contents: read
21+
22+
jobs:
23+
noop:
24+
runs-on: ubuntu-latest
25+
steps:
26+
- name: noop
27+
run: |
28+
echo "noop"

0 commit comments

Comments
 (0)