We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d7bfe3b commit 24d49e0Copy full SHA for 24d49e0
.github/workflows/github-packages-publish.yml
@@ -0,0 +1,19 @@
1
+# This workflow will build a package using Maven and then publish it to GitHub packages when a release is created
2
+# For more information see: https://github.com/actions/setup-java#apache-maven-with-a-settings-path
3
+
4
+name: Publish package to GitHub Packages
5
+on:
6
+ release:
7
+ types: [created]
8
+jobs:
9
+ publish:
10
+ runs-on: ubuntu-latest
11
+ steps:
12
+ - uses: actions/checkout@v2
13
+ - uses: actions/setup-java@v1
14
+ with:
15
+ java-version: 1.8
16
+ - name: Publish package
17
+ run: gradle publish
18
+ env:
19
+ GITHUB_TOKEN: ${{ secrets.ACCESS_TOKEN }}
0 commit comments