mirror of
https://github.com/openflocon/Flocon.git
synced 2026-05-06 05:50:30 +00:00
fix macos dmg path
This commit is contained in:
parent
3509dfa42e
commit
e32626580d
1 changed files with 28 additions and 0 deletions
28
.github/workflows/publish_android.yml
vendored
Normal file
28
.github/workflows/publish_android.yml
vendored
Normal file
|
|
@ -0,0 +1,28 @@
|
|||
name: Publish Android libs to maven MavenCentral
|
||||
on:
|
||||
release:
|
||||
types: [released, prereleased]
|
||||
# Allows you to run this workflow manually from the Actions tab
|
||||
workflow_dispatch:
|
||||
jobs:
|
||||
publish:
|
||||
name: Release build and publish
|
||||
runs-on: macOS-latest
|
||||
steps:
|
||||
- name: Check out code
|
||||
uses: actions/checkout@v4
|
||||
- name: Set up JDK 21
|
||||
uses: actions/setup-java@v4
|
||||
with:
|
||||
distribution: 'zulu'
|
||||
java-version: 21
|
||||
- name: Publish to MavenCentral
|
||||
run: ./gradlew :core:publishToMavenCentral :okhttp-interceptor:publishToMavenCentral :grpc-interceptor:publishToMavenCentral --no-configuration-cache
|
||||
working-directory: FloconAndroid
|
||||
env:
|
||||
PROJECT_VERSION_NAME: ${{ github.ref_name }}
|
||||
ORG_GRADLE_PROJECT_mavenCentralUsername: ${{ secrets.ORG_GRADLE_PROJECT_MAVENCENTRALUSERNAME }}
|
||||
ORG_GRADLE_PROJECT_mavenCentralPassword: ${{ secrets.ORG_GRADLE_PROJECT_MAVENCENTRALPASSWORD }}
|
||||
ORG_GRADLE_PROJECT_signingInMemoryKeyId: ${{ secrets.ORG_GRADLE_PROJECT_SIGNINGINMEMORYKEYID }}
|
||||
ORG_GRADLE_PROJECT_signingInMemoryKeyPassword: ${{ secrets.ORG_GRADLE_PROJECT_SIGNINGINMEMORYKEYPASSWORD }}
|
||||
ORG_GRADLE_PROJECT_signingInMemoryKey: ${{ secrets.ORG_GRADLE_PROJECT_SIGNINGINMEMORYKEY }}
|
||||
Loading…
Add table
Add a link
Reference in a new issue