Skip to content

Commit 14518b2

Browse files
author
Tom Wetjens
committed
Initial workflow release.yml
1 parent c2aa96f commit 14518b2

1 file changed

Lines changed: 23 additions & 0 deletions

File tree

.github/workflows/release.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# This workflow will build a package using Maven and then publish it to Maven central when a release is created
2+
# For more information see: https://github.com/actions/setup-java/blob/main/docs/advanced-usage.md#apache-maven-with-a-settings-path
3+
4+
name: release
5+
6+
on:
7+
workflow_dispatch:
8+
9+
jobs:
10+
build:
11+
runs-on: ubuntu-latest
12+
permissions:
13+
contents: write
14+
packages: write
15+
releases: write
16+
17+
steps:
18+
- uses: actions/checkout@v3
19+
- name: Set up JDK
20+
uses: actions/setup-java@v3
21+
with:
22+
java-version: '17'
23+
distribution: 'temurin'

0 commit comments

Comments
 (0)