-
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
5420156
commit 9d531c0
Showing
4 changed files
with
90 additions
and
129 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 |
---|---|---|
|
@@ -2,68 +2,8 @@ name: KMMBridge-Debug | |
on: | ||
workflow_dispatch: | ||
|
||
permissions: | ||
contents: write | ||
packages: write | ||
|
||
jobs: | ||
kmmbridgepublish: | ||
concurrency: "kmmbridgepublish-${{ github.repository }}" | ||
runs-on: macos-latest | ||
steps: | ||
- name: Checkout the repo with tags | ||
uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
fetch-tags: true | ||
|
||
- uses: touchlab/[email protected] | ||
id: versionPropertyValue | ||
with: | ||
file: ./gradle.properties | ||
property: LIBRARY_VERSION | ||
|
||
- name: Print versionPropertyValue | ||
id: output | ||
run: echo "${{ steps.versionPropertyValue.outputs.propVal }}" | ||
|
||
- name: Touchlab Sample Sanity Check (Ignore this for your CI) | ||
uses: touchlab/sample-group-sanity-check@main | ||
|
||
- uses: actions/setup-java@v2 | ||
with: | ||
distribution: "adopt" | ||
java-version: 17 | ||
|
||
- name: Validate Gradle Wrapper | ||
uses: gradle/wrapper-validation-action@v1 | ||
|
||
- name: Cache build tooling | ||
uses: actions/cache@v3 | ||
with: | ||
path: | | ||
~/.gradle/caches | ||
~/.konan | ||
key: ${{ runner.os }}-v4-${{ hashFiles('*.gradle.kts') }} | ||
|
||
- name: Create or Find Artifact Release | ||
id: devrelease | ||
uses: softprops/action-gh-release@v2 | ||
with: | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
tag_name: "${{ steps.versionPropertyValue.outputs.propVal }}" | ||
|
||
- name: Build Main | ||
run: | | ||
./gradlew publishKotlinMultiplatformPublicationToGitHubPackagesRepository publishAndroidDebugPublicationToGitHubPackagesRepository publishAndroidReleasePublicationToGitHubPackagesRepository kmmBridgePublish \ | ||
-PNATIVE_BUILD_TYPE=DEBUG -PGITHUB_ARTIFACT_RELEASE_ID=${{ steps.devrelease.outputs.id }} -PENABLE_PUBLISHING=true -PGITHUB_PUBLISH_TOKEN=${{ secrets.GITHUB_TOKEN }} -PGITHUB_REPO=${{ github.repository }} \ | ||
--no-daemon --info --stacktrace | ||
env: | ||
GRADLE_OPTS: -Dkotlin.incremental=false -Dorg.gradle.jvmargs="-Xmx3g -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8 -XX:MaxMetaspaceSize=512m" | ||
|
||
- uses: touchlab/ga-update-release-tag@v1 | ||
id: update-release-tag | ||
with: | ||
commitMessage: "KMP SPM package release for ${{ steps.versionPropertyValue.outputs.propVal }}" | ||
tagMessage: "KMP release version ${{ steps.versionPropertyValue.outputs.propVal }}" | ||
tagVersion: ${{ steps.versionPropertyValue.outputs.propVal }} | ||
call-publish: | ||
uses: ./.github/workflows/KMMBridge-Publish.yml | ||
with: | ||
build-debug: true |
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 |
---|---|---|
@@ -0,0 +1,81 @@ | ||
name: KMMBridge-Publish | ||
on: | ||
workflow_call: | ||
inputs: | ||
build-debug: | ||
required: true | ||
type: boolean | ||
publish-tasks: | ||
required: false | ||
default: "publishKotlinMultiplatformPublicationToGitHubPackagesRepository publishAndroidDebugPublicationToGitHubPackagesRepository publishAndroidReleasePublicationToGitHubPackagesRepository kmmBridgePublish" | ||
type: string | ||
|
||
permissions: | ||
contents: write | ||
packages: write | ||
|
||
jobs: | ||
kmmbridgepublish: | ||
concurrency: "kmmbridgepublish-${{ github.repository }}" | ||
runs-on: macos-latest | ||
steps: | ||
- name: Checkout the repo with tags | ||
uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
fetch-tags: true | ||
|
||
- uses: touchlab/[email protected] | ||
id: versionPropertyValue | ||
with: | ||
file: ./gradle.properties | ||
property: LIBRARY_VERSION | ||
|
||
- name: Print versionPropertyValue | ||
id: output | ||
run: echo "${{ steps.versionPropertyValue.outputs.propVal }}" | ||
|
||
- name: Touchlab Sample Sanity Check (Ignore this for your CI) | ||
uses: touchlab/sample-group-sanity-check@main | ||
|
||
- uses: actions/setup-java@v2 | ||
with: | ||
distribution: "adopt" | ||
java-version: 17 | ||
|
||
- name: Validate Gradle Wrapper | ||
uses: gradle/wrapper-validation-action@v1 | ||
|
||
- name: Cache build tooling | ||
uses: actions/cache@v3 | ||
with: | ||
path: | | ||
~/.gradle/caches | ||
~/.konan | ||
key: ${{ runner.os }}-v4-${{ hashFiles('*.gradle.kts') }} | ||
|
||
- name: Create or Find Artifact Release | ||
id: devrelease | ||
uses: softprops/action-gh-release@v2 | ||
with: | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
tag_name: "${{ steps.versionPropertyValue.outputs.propVal }}" | ||
|
||
- name: Build Main | ||
run: | | ||
./gradlew ${{ inputs.publish-tasks }} \ | ||
-PNATIVE_BUILD_TYPE=${{ inputs.build-debug && 'DEBUG' || 'RELEASE' }} \ | ||
-PGITHUB_ARTIFACT_RELEASE_ID=${{ steps.devrelease.outputs.id }} \ | ||
-PGITHUB_PUBLISH_TOKEN=${{ secrets.GITHUB_TOKEN }} \ | ||
-PGITHUB_REPO=${{ github.repository }} \ | ||
-PENABLE_PUBLISHING=true \ | ||
--no-daemon --info --stacktrace | ||
env: | ||
GRADLE_OPTS: -Dkotlin.incremental=false -Dorg.gradle.jvmargs="-Xmx3g -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8 -XX:MaxMetaspaceSize=512m" | ||
|
||
- uses: touchlab/ga-update-release-tag@v1 | ||
id: update-release-tag | ||
with: | ||
commitMessage: "KMP SPM package release for ${{ steps.versionPropertyValue.outputs.propVal }}" | ||
tagMessage: "KMP release version ${{ steps.versionPropertyValue.outputs.propVal }}" | ||
tagVersion: ${{ steps.versionPropertyValue.outputs.propVal }} |
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 |
---|---|---|
|
@@ -2,68 +2,8 @@ name: KMMBridge-Release | |
on: | ||
workflow_dispatch: | ||
|
||
permissions: | ||
contents: write | ||
packages: write | ||
|
||
jobs: | ||
kmmbridgepublish: | ||
concurrency: "kmmbridgepublish-${{ github.repository }}" | ||
runs-on: macos-latest | ||
steps: | ||
- name: Checkout the repo with tags | ||
uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
fetch-tags: true | ||
|
||
- uses: touchlab/[email protected] | ||
id: versionPropertyValue | ||
with: | ||
file: ./gradle.properties | ||
property: LIBRARY_VERSION | ||
|
||
- name: Print versionPropertyValue | ||
id: output | ||
run: echo "${{ steps.versionPropertyValue.outputs.propVal }}" | ||
|
||
- name: Touchlab Sample Sanity Check (Ignore this for your CI) | ||
uses: touchlab/sample-group-sanity-check@main | ||
|
||
- uses: actions/setup-java@v2 | ||
with: | ||
distribution: "adopt" | ||
java-version: 17 | ||
|
||
- name: Validate Gradle Wrapper | ||
uses: gradle/wrapper-validation-action@v1 | ||
|
||
- name: Cache build tooling | ||
uses: actions/cache@v3 | ||
with: | ||
path: | | ||
~/.gradle/caches | ||
~/.konan | ||
key: ${{ runner.os }}-v4-${{ hashFiles('*.gradle.kts') }} | ||
|
||
- name: Create or Find Artifact Release | ||
id: devrelease | ||
uses: softprops/action-gh-release@v2 | ||
with: | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
tag_name: "${{ steps.versionPropertyValue.outputs.propVal }}" | ||
|
||
- name: Build Main | ||
run: | | ||
./gradlew publishKotlinMultiplatformPublicationToGitHubPackagesRepository publishAndroidDebugPublicationToGitHubPackagesRepository publishAndroidReleasePublicationToGitHubPackagesRepository kmmBridgePublish \ | ||
-PGITHUB_ARTIFACT_RELEASE_ID=${{ steps.devrelease.outputs.id }} -PENABLE_PUBLISHING=true -PGITHUB_PUBLISH_TOKEN=${{ secrets.GITHUB_TOKEN }} -PGITHUB_REPO=${{ github.repository }} \ | ||
--no-daemon --info --stacktrace | ||
env: | ||
GRADLE_OPTS: -Dkotlin.incremental=false -Dorg.gradle.jvmargs="-Xmx3g -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8 -XX:MaxMetaspaceSize=512m" | ||
|
||
- uses: touchlab/ga-update-release-tag@v1 | ||
id: update-release-tag | ||
with: | ||
commitMessage: "KMP SPM package release for ${{ steps.versionPropertyValue.outputs.propVal }}" | ||
tagMessage: "KMP release version ${{ steps.versionPropertyValue.outputs.propVal }}" | ||
tagVersion: ${{ steps.versionPropertyValue.outputs.propVal }} | ||
call-publish: | ||
uses: ./.github/workflows/KMMBridge-Publish.yml | ||
with: | ||
build-debug: false |
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