Skip to content

Commit

Permalink
Added publishKotlinMultiplatformPublicationToDeployRepository to linu…
Browse files Browse the repository at this point in the history
…x release
  • Loading branch information
sksamuel committed Sep 1, 2020
1 parent 189c9e0 commit c3e6d5a
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 30 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/release.yml
Expand Up @@ -17,6 +17,24 @@ jobs:
with:
fetch-depth: 0

- name: publish metadata release
run: ./gradlew publishMetadataPublicationToDeployRepository
env:
RELEASE_VERSION: ${{ github.event.inputs.version }}
OSSRH_USERNAME: ${{ secrets.OSSRH_USERNAME }}
OSSRH_PASSWORD: ${{ secrets.OSSRH_PASSWORD }}
ORG_GRADLE_PROJECT_signingKey: ${{ secrets.SIGNING_KEY }}
ORG_GRADLE_PROJECT_signingPassword: ${{ secrets.SIGNING_PASSWORD }}

- name: publish multiplatform release
run: ./gradlew publishKotlinMultiplatformPublicationToDeployRepository
env:
RELEASE_VERSION: ${{ github.event.inputs.version }}
OSSRH_USERNAME: ${{ secrets.OSSRH_USERNAME }}
OSSRH_PASSWORD: ${{ secrets.OSSRH_PASSWORD }}
ORG_GRADLE_PROJECT_signingKey: ${{ secrets.SIGNING_KEY }}
ORG_GRADLE_PROJECT_signingPassword: ${{ secrets.SIGNING_PASSWORD }}

- name: publish jvm release
run: ./gradlew publishJvmPublicationToDeployRepository
env:
Expand Down
30 changes: 0 additions & 30 deletions .github/workflows/release_meta.yml

This file was deleted.

0 comments on commit c3e6d5a

Please sign in to comment.