Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@ jobs:

- name: Configure gradle.properties for GitHub Packages
run: |
echo "github=true" >> gradle.properties
echo "ossrhUsername=${{ github.repository_owner }}" >> gradle.properties
echo "ossrhPassword=${{ steps.app-token.outputs.token }}" >> gradle.properties
echo "signing_keyId=${{ secrets.SIGNING_KEY_ID }}" >> gradle.properties
Expand Down
1 change: 0 additions & 1 deletion personalization-sdk/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,6 @@ tasks.register('publishToGitHubPackages') {
description = 'Publish to GitHub Packages only'
dependsOn 'publish'
doFirst {
project.ext.set('github', true)
println "Publishing to GitHub Packages only"
}
}
Expand Down
Loading