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 b84f2ad commit f25c749Copy full SHA for f25c749
.github/workflows/gradlepublish.yml
@@ -18,12 +18,14 @@ jobs:
18
uses: actions/setup-java@v1
19
with:
20
java-version: 1.8
21
-
+ - name: Build
22
+ run: |
23
+ sudo ./gradlew assembleRelease --stacktrace
24
# The USERNAME and PASSWORD need to correspond to the credentials environment variables used in
25
# the publishing section of your build.gradle
26
- name: Publish to GitHub Packages
27
env:
28
USERNAME: ${{ secrets.GPR_USERNAME }}
29
TOKEN: ${{ secrets.GPR_TOKEN }}
30
run: |
- sudo ./gradlew -Pname="$USERNAME" -Ptoken="$TOKEN" assembleRelease publish --stacktrace
31
+ sudo ./gradlew -Pname="$USERNAME" -Ptoken="$TOKEN" publish --stacktrace
0 commit comments