fix(#76-support-auth-header): add meetingId field to request #78
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
name: Library Snapshot Deploy | |
on: | |
push: | |
branches-ignore: [ "main" ] | |
workflow_dispatch: | |
jobs: | |
snapshot-deploy: | |
runs-on: macos-latest | |
env: | |
GITHUB_USERNAME: "meetacy" | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
BRANCH_NAME: ${{ github.head_ref || github.ref_name }} | |
ORG_GRADLE_PROJECT_snapshot: true | |
ORG_GRADLE_PROJECT_commit: ${{ github.sha }} | |
ORG_GRADLE_PROJECT_attempt: ${{ github.run_attempt }} | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Gradle Cache Setup | |
uses: gradle/gradle-build-action@v2 | |
with: | |
cache-read-only: ${{ github.ref != 'refs/heads/dev' }} | |
- name: Konan Cache Setup | |
uses: actions/cache@v3 | |
with: | |
path: ~/.konan | |
key: konan-cache | |
- name: Gradle Sync | |
run: ./gradlew | |
- name: Add Sdk Version to Env | |
run: | | |
snapshot_version=$(./gradlew printSdkVersion -q) | |
echo "snapshot_version=$snapshot_version" >> $GITHUB_ENV | |
- name: Publish Jvm Platform ${{ env.snapshot_version }} | |
run: ./gradlew publishJvmPublicationToMeetacySdkRepository publishKotlinMultiplatformPublicationToMeetacySdkRepository | |
- name: Publish Remaining ${{ env.snapshot_version }} | |
run: | | |
./gradlew publishJsPublicationToMeetacySdkRepository publishIosX64PublicationToMeetacySdkRepository \ | |
publishIosSimulatorArm64PublicationToMeetacySdkRepository publishIosArm64PublicationToMeetacySdkRepository |