-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
85e1888
commit 972a1b3
Showing
1 changed file
with
12 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,18 +6,22 @@ jobs: | |
runs-on: windows-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Set up JDK 1.8 | ||
uses: actions/setup-java@v1 | ||
with: | ||
java-version: 1.8 | ||
# - name: Set up JDK 1.8 | ||
# uses: actions/setup-java@v1 | ||
# with: | ||
# java-version: 1.8 | ||
- name: Creating local properties file | ||
run: echo signing.keyId=${{ secrets.SIGNING_KEYID }} >> local.properties | ||
- run: echo signing.password=${{ secrets.SIGNING_PASSWORD }} >> local.properties | ||
- run: echo ossrhUsername=${{ secrets.OSSRH_USERNAME }} >> local.properties | ||
- run: echo ossrhPassword=${{ secrets.OSSRH_PASSWORD }} >> local.properties | ||
- name: Show me directories | ||
run: dir | ||
- run: type local.properties | ||
- run: echo ossrhPassword=${{ secrets.OSSRH_PASSWORD }} >> local.properties | ||
- run: echo signing.secretKeyRingFile=key.gpg >> local.properties | ||
- name: Creating key.gpg | ||
uses: timheuer/[email protected] | ||
with: | ||
fileName: 'key.gpg' | ||
encodedString: ${{ secrets.SOME_ENCODED_STRING }} | ||
- run: dir | ||
# - run: chmod +x gradlew | ||
#- name: Build Gradle | ||
# run: ./gradlew build | ||
|