Skip to content

Commit

Permalink
fix: maven publish error
Browse files Browse the repository at this point in the history
  • Loading branch information
anwarpro committed Oct 6, 2024
1 parent f897a1f commit 3dbb0d3
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,11 +32,11 @@ jobs:
gpg_private_key: ${{ secrets.SIGNING_KEY }}
passphrase: ${{ secrets.SIGNING_KEY_PASSWORD }}

- name: Export gpg key
- name: Export file
env:
SIGNING_KEY_ID: ${{ secrets.SIGNING_KEY_ID }}
SIGNING_KEY: ${{ secrets.SIGNING_KEY }}
run: |
gpg --export-secret-keys $SIGNING_KEY_ID -o ${HOME}/secring.gpg
echo "$SIGNING_KEY" | gpg --dearmor > ~/secret_key.gpg
- name: Setup Gradle
uses: gradle/actions/setup-gradle@v3
Expand All @@ -52,7 +52,7 @@ jobs:
echo "mavenCentralPassword=${MAVEN_CENTRAL_PASSWORD}" >> gradle.properties
echo "signing.keyId=${SIGNING_KEY_ID}" >> gradle.properties
echo "signing.password=${SIGNING_KEY_PASSWORD}" >> gradle.properties
echo "signing.secretKeyRingFile=${HOME}/secring.gpg" >> gradle.properties
echo "signing.secretKeyRingFile=${HOME}/secret_key.gpg" >> gradle.properties
- name: Setup Xcode
uses: maxim-lobanov/setup-xcode@v1
Expand Down
2 changes: 1 addition & 1 deletion core/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ plugins {
alias(libs.plugins.jetbrainsCompose)
alias(libs.plugins.compose.compiler)
id("maven-publish")
id("com.vanniktech.maven.publish") version "0.28.0"
id("com.vanniktech.maven.publish") version "0.29.0"
}

group = "com.helloanwar.mvvmate"
Expand Down

0 comments on commit 3dbb0d3

Please sign in to comment.