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.
2 parents 339508d + c5c5277 commit 8022997Copy full SHA for 8022997
.github/workflows/distribution.yml
@@ -0,0 +1,21 @@
1
+name: Bintray Distribution
2
+on:
3
+ release:
4
+ types: [published]
5
+jobs:
6
+ gradle:
7
+ strategy:
8
+ matrix:
9
+ os: [ubuntu-latest]
10
+ runs-on: ${{ matrix.os }}
11
+ steps:
12
+ - uses: actions/checkout@v2
13
+ - uses: actions/setup-java@v1
14
+ with:
15
+ java-version: 1.8
16
+ - uses: eskatos/gradle-command-action@v1
17
18
+ arguments: build
19
20
21
+ arguments: :web-utils:publish -DBINTRAY_USER=${{ secrets.BINTRAY_USER }} -DBINTRAY_KEY=${{ secrets.BINTRAY_KEY }} -PlibraryPublish
0 commit comments