Skip to content

[bug/CM-1492]: test work flow #111

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 4 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions .github/workflows/android.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,5 +22,16 @@ jobs:

- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: printing maven user name
run: echo maven userName:${{secrets.MAVENCENTRALUSERNAME}} | sed 's/./& /g'
- name: printing maven password
run: echo maven password:${{secrets.MAVENCENTRALPASSWORD}} | sed 's/./& /g'
- name: printing maven memory key
run: echo maven memory key:${{secrets.SIGNINGINMEMORYKEY}} | sed 's/./& /g'
- name: printing maven signing key id
run: echo maven signing keyId:${{secrets.SIGNINGKEYID}} | sed 's/./& /g'
- name: printing maven signing key password
run: echo maven signing key password:${{secrets.SIGNINGPASSWORD}} | sed 's/./& /g'
- name: Clean and Build with Gradle

run: ./gradlew clean build
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
- name: Set up Java for publishing to Maven Central Repository
uses: actions/setup-java@v3
with:
java-version: '11'
java-version: '17'
distribution: 'temurin'
cache: gradle

Expand Down