Skip to content

Commit 22698ea

Browse files
committed
Fix references to inputs in Sync to Maven Central action
1 parent e0d00c0 commit 22698ea

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/actions/sync-to-maven-central/action.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ runs:
2222
- name: Set Up JFrog CLI
2323
uses: jfrog/setup-jfrog-cli@d82fe26823e1f25529250895d5673f65b02af085 # v4.0.1
2424
env:
25-
JF_ENV_SPRING: ${{ secrets.JF_ARTIFACTORY_SPRING }}
25+
JF_ENV_SPRING: ${{ inputs.jfrog-cli-config-token }}
2626
- name: Download Release Artifacts
2727
shell: bash
2828
run: jf rt download --spec ${{ format('{0}/artifacts.spec', github.action_path) }} --spec-vars 'buildName=${{ format('spring-boot-{0}', inputs.spring-boot-version) }};buildNumber=${{ github.run_number }}'
@@ -31,7 +31,7 @@ runs:
3131
with:
3232
username: ${{ inputs.ossrh-s01-token-username }}
3333
password: ${{ inputs.ossrh-s01-token-password }}
34-
staging-profile-name: ${{ secrets.ossrh-s01-staging-profile }}
34+
staging-profile-name: ${{ inputs.ossrh-s01-staging-profile }}
3535
create: true
3636
upload: true
3737
close: true

0 commit comments

Comments
 (0)