Skip to content

Commit

Permalink
Fix github workflows
Browse files Browse the repository at this point in the history
- Fix the names and step description of release workflows.
- Setup java 11 for the AGP to work while updating test app.
  • Loading branch information
prudrabhat committed Jul 26, 2023
1 parent b20986e commit 0c02c52
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/maven-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
run: |
echo $GPG_SECRET_KEYS | base64 --decode | gpg --import --no-tty --batch --yes
echo $GPG_OWNERTRUST | base64 --decode | gpg --import-ownertrust --no-tty --batch --yes
- name: Publish to maven central staging repository
- name: Publish to maven central repository
run: make ci-publish-main
env:
SONATYPE_USERNAME: ${{ secrets.SONATYPE_USERNAME }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/maven-snapshot.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Publish package to the Maven Central Repository
name: Publish package to the Maven Central Staging Repository
on:
push:
branches:
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/update-testapp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,11 @@ jobs:
runs-on: macos-latest

steps:

- name: Set up Java
uses: actions/setup-java@v1
with:
java-version: 11

- name: Checkout
uses: actions/[email protected]
with:
Expand Down

0 comments on commit 0c02c52

Please sign in to comment.