Skip to content

Commit 4834eb1

Browse files
committed
release bundle cmds fail without url
1 parent beeda4f commit 4834eb1

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/build-proxy.yml

+3-2
Original file line numberDiff line numberDiff line change
@@ -79,9 +79,10 @@ jobs:
7979
run: echo version=$(xpath -q -e "//project/version/text()" pom.xml) >> $GITHUB_OUTPUT
8080

8181
- name: Create release bundle from JFrog build
82-
run: jf release-bundle-create --project=clients --signing-key=aerospike --sync --spec=./releasebundle-filespec.json aerospike-java-proxy-client ${{ steps.get-proxy-client-version.outputs.version }}
82+
# Platform URL required for lifecycle commands (e.g release bundle management)
83+
run: jf release-bundle-create --url ${{ vars.JF_URL }} --project=clients --signing-key=aerospike --sync --spec=./releasebundle-filespec.json aerospike-java-proxy-client ${{ steps.get-proxy-client-version.outputs.version }}
8384
working-directory: .github/workflows
8485

8586
- name: Promote release bundle to DEV stage
86-
run: jf release-bundle-promote --project=clients --signing-key=aerospike --sync aerospike-java-proxy-client ${{ steps.get-proxy-client-version.outputs.version }} DEV
87+
run: jf release-bundle-promote --url ${{ vars.JF_URL }} --project=clients --signing-key=aerospike --sync aerospike-java-proxy-client ${{ steps.get-proxy-client-version.outputs.version }} DEV
8788
working-directory: .github/workflows

0 commit comments

Comments
 (0)