feat: 修改依赖版本 #18
Workflow file for this run
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
# This workflow will build a Java project with Gradle | |
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-gradle | |
name: Java CI with Gradle | |
on: | |
push: | |
tags: ["v*"] | |
# branches: [ master ] | |
# pull_request: | |
# branches: [ master ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up JDK 11 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: 11 | |
- name: Add Maven Secret | |
run: | | |
echo "maven.username=${{ secrets.MAVEN_USERNAME }}" >> local.properties | |
echo "maven.password=${{ secrets.MAVEN_PASSWORD }}" >> local.properties | |
- name: Grant execute permission for gradlew | |
run: chmod +x gradlew | |
- name: Build with Gradle | |
run: ./gradlew build | |
- name: Build Debug APK | |
run: ./gradlew assembleDebug | |
- name: Upload to Maven Central | |
run: | | |
gpg -k | |
./gradlew happy-bubble:publishMavenJavaPublicationToMavenRepository | |
- name: Publish to Release | |
env: | |
GITHUB_TOKEN: ${{ secrets.GIT_RElEASE_TOKEN }} | |
run: | | |
tag_name="${GITHUB_REF##*/}" | |
hub release create -a "app/build/outputs/apk/debug/app-debug.apk" -a "happy-bubble/build/outputs/aar/happy-bubble-release.aar" -m "$tag_name" "$tag_name" |