Skip to content

Commit

Permalink
Added LICENSE and deployment steps
Browse files Browse the repository at this point in the history
  • Loading branch information
AmniX committed Nov 20, 2024
1 parent b837583 commit cb240d5
Show file tree
Hide file tree
Showing 3 changed files with 117 additions and 17 deletions.
112 changes: 95 additions & 17 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,18 +13,9 @@ permissions:
contents: write

jobs:
deploy-sdk:
name: Deploy SDK
strategy:
matrix:
include:
# - target: publishIosArm64PublicationToSonatypeRepository
# os: macos-latest
- target: :shared:publishAllPublicationsToMavenCentralRepository
os: ubuntu-latest
- target: :komoju-android-sdk:publishAllPublicationsToMavenCentralRepository
os: ubuntu-latest
runs-on: ${{ matrix.os }}
deploy-android-sdk:
name: Deploy Android SDK
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Validate Gradle Wrapper
Expand All @@ -50,19 +41,18 @@ jobs:
echo Version: TAG
echo "SDK_VERSION=${TAG#v}" >> $GITHUB_ENV
- name: Deploy
run: chmod +x gradlew && ./gradlew ${{ matrix.target }} --no-configuration-cache --no-daemon
- name: Build & Deploy
run: chmod +x gradlew && ./gradlew :shared:publishAllPublicationsToMavenCentralRepository :komoju-android-sdk:publishAllPublicationsToMavenCentralRepository --no-configuration-cache --no-daemon
env:
ORG_GRADLE_PROJECT_mavenCentralUsername: ${{ secrets.OSSRH_USERNAME }}
ORG_GRADLE_PROJECT_mavenCentralPassword: ${{ secrets.OSSRH_PASSWORD }}
ORG_GRADLE_PROJECT_signingInMemoryKey: ${{ secrets.MEMORY_KEY }}
ORG_GRADLE_PROJECT_signingInMemoryKeyPassword: ${{ secrets.OSSRH_GPG_SECRET_KEY_PASSWORD }}
SDK_VERSION: ${{ env.SDK_VERSION }}


deploy-app:
deploy-android-app:
name: Deploy Android App
needs: deploy-sdk
needs: deploy-android-sdk
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
Expand Down Expand Up @@ -92,5 +82,93 @@ jobs:
file: example-android/build/outputs/apk/dev/release/example-android-dev-release.apk
asset_name: soundBud-release.apk
make_latest: false
env:
SDK_VERSION: ${{ env.SDK_VERSION }}

deploy-ios-sdk:
name: Deploy iOS SDK
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- name: Validate Gradle Wrapper
uses: gradle/actions/wrapper-validation@v4
- uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: '16.0.0'
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
distribution: zulu
java-version: 17
- name: Write release version
run: |
TAG=${{ github.event.release.tag_name }}
echo Version: TAG
echo "SDK_VERSION=${TAG#v}" >> $GITHUB_ENV
- name: Build Shared SDK framework
run: |
chmod +x gradlew && ./gradlew :shared:linkReleaseFrameworkIosArm64 :shared:linkReleaseFrameworkIosSimulatorArm64 --no-configuration-cache --no-daemon
rm -rf ./build/outputs/xcframework/KomojuSharedSDK.xcframework
xcodebuild -create-xcframework \
-framework ./shared/build/bin/iosArm64/releaseFramework/komojuShared.framework \
-framework ./shared/build/bin/iosSimulatorArm64/releaseFramework/komojuShared.framework \
-output ./build/outputs/xcframework/KomojuSharedSDK.xcframework
zip -r KomojuSharedSDK-$SDK_VERSION.zip ./build/outputs/xcframework/KomojuSharedSDK.xcframework
env:
SDK_VERSION: ${{ env.SDK_VERSION }}
- name: Build iOS SDK Wrapper
working-directory: ./komoju-ios-sdk
run: |
# Build & Archive for iOS
xcodebuild archive \
-scheme KomojuSDK \
-configuration Release \
-destination "generic/platform=iOS" \
-archivePath "./build/xcframework/komoju_ios.xcarchive" \
-sdk iphoneos \
ONLY_ACTIVE_ARCH=NO \
SKIP_INSTALL=NO \
BUILD_LIBRARY_FOR_DISTRIBUTION=YES
# Build & Archive for iOS Simulator
xcodebuild archive \
-scheme KomojuSDK \
-configuration Release \
-destination "generic/platform=iOS Simulator" \
-archivePath "./build/xcframework/komoju_ios_simulators.xcarchive" \
-sdk iphonesimulator \
ONLY_ACTIVE_ARCH=NO \
SKIP_INSTALL=NO \
BUILD_LIBRARY_FOR_DISTRIBUTION=YES
rm -rf ./build/outputs/xcframework/KomojuIosSDK.xcframework
xcodebuild -create-xcframework \
-framework ./build/xcframework/komoju_ios.xcarchive/Products/Library/Frameworks/KomojuSDK.framework \
-framework ./build/xcframework/komoju_ios_simulators.xcarchive/Products/Library/Frameworks/KomojuSDK.framework \
-output ./build/outputs/xcframework/KomojuIosSDK.xcframework
zip -r KomojuIosSDK-$SDK_VERSION.zip ./build/outputs/xcframework/KomojuIosSDK.xcframework
env:
SDK_VERSION: ${{ env.SDK_VERSION }}
- name: Publish Shared SDK Framework!
uses: svenstaro/upload-release-action@v2
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: KomojuSharedSDK-$SDK_VERSION.zip
make_latest: false
env:
SDK_VERSION: ${{ env.SDK_VERSION }}
- name: Publish iOS SDK Framework!
uses: svenstaro/upload-release-action@v2
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: KomojuIosSDK-$SDK_VERSION.zip
make_latest: false
env:
SDK_VERSION: ${{ env.SDK_VERSION }}
1 change: 1 addition & 0 deletions komoju-ios-sdk/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
xcframework/**
21 changes: 21 additions & 0 deletions komoju-ios-sdk/LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
MIT License

Copyright (c) 2024 Degica

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

0 comments on commit cb240d5

Please sign in to comment.