Skip to content

Commit

Permalink
feat: new kmp targets
Browse files Browse the repository at this point in the history
  • Loading branch information
y9vad9 committed Feb 27, 2024
1 parent 684b61a commit 981760b
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/publish-dev-version.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:

jobs:
build:
runs-on: ubuntu-latest
runs-on: macos-latest

steps:
- name: Checkout repository
Expand All @@ -33,4 +33,4 @@ jobs:
REPOSILITE_USER: ${{ secrets.REPOSILITE_USER }}
REPOSILITE_SECRET: ${{ secrets.REPOSILITE_SECRET }}
LIB_VERSION: dev-${{ github.sha }}
run: ./gradlew publishKotlinMultiplatformPublicationToTimeMatesDevRepository -Pversion=${{ env.LIB_VERSION }}
run: ./gradlew publishAllPublicationsToTimeMatesDevRepository -Pversion=${{ env.LIB_VERSION }}
4 changes: 2 additions & 2 deletions .github/workflows/publish-release-version.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:

jobs:
build:
runs-on: ubuntu-latest
runs-on: macos-latest

steps:
- name: Checkout repository
Expand All @@ -33,4 +33,4 @@ jobs:
REPOSILITE_USER: ${{ secrets.REPOSILITE_USER }}
REPOSILITE_SECRET: ${{ secrets.REPOSILITE_SECRET }}
LIB_VERSION: ${{ github.ref_name }}
run: ./gradlew publishKotlinMultiplatformPublicationToTimeMatesReleasesRepository -Pversion=${{ env.LIB_VERSION }}
run: ./gradlew publishAllPublicationsToTimeMatesReleasesRepository -Pversion=${{ env.LIB_VERSION }}
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,11 @@ kotlin {
jvm {
jvmToolchain(11)
}
js {
browser()
nodejs()
}
iosArm64()
iosX64()
iosSimulatorArm64()
}

0 comments on commit 981760b

Please sign in to comment.