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 477d3ea commit 934aef9Copy full SHA for 934aef9
.github/workflows/release.yml
@@ -51,7 +51,7 @@ jobs:
51
- name: Build with Gradle
52
id: build_gradle
53
run: |
54
- ./gradlew build
+ ./gradlew assemble -PsonatypeUsername -PsonatypePassword
55
- name: Upload Release Asset
56
id: upload_release_asset
57
uses: actions/upload-release-asset@v1
Dockerfile
@@ -2,10 +2,7 @@ FROM azul/zulu-openjdk-alpine:8
2
3
WORKDIR /project
4
COPY . .
5
-RUN mkdir ~/.gradle && \
6
- echo "sonatypeUsername=" >> ~/.gradle/gradle.properties && \
7
- echo "sonatypePassword=" >> ~/.gradle/gradle.properties && \
8
- ./gradlew assemble
+RUN ./gradlew assemble -PsonatypeUsername -PsonatypePassword
9
10
FROM liferay/portal:7.2.1-ga2
11
0 commit comments