We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 44f605e commit 7621590Copy full SHA for 7621590
1 file changed
.github/workflows/gradle-publish.yml
@@ -0,0 +1,21 @@
1
+# This is a basic workflow to help you get started with Actions
2
+
3
+name: Publish package
4
5
+on:
6
+ release:
7
+ types: [created]
8
+ workflow_dispatch:
9
10
+jobs:
11
+ publish:
12
+ runs-on: ubuntu-latest
13
+ steps:
14
+ - uses: actions/checkout@v2
15
+ - uses: actions/setup-java@v1
16
+ with:
17
+ java-version: 1.8
18
+ - name: Publish package
19
+ run: gradle publish
20
+ env:
21
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
0 commit comments