Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
juliannguyen4 committed Jul 15, 2024
1 parent 04ca9d8 commit 9935899
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build-proxy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ jobs:
# Based on https://github.com/citrusleaf/devops/blob/master/jfrog/vector/deploy-to-jfrog.sh

- uses: jfrog/setup-jfrog-cli@v4
with:
env:
JF_URL: ${{ env.JFROG_URL }}
JF_ACCESS_TOKEN: ${{ secrets.JF_ACCESS_TOKEN }}

Expand All @@ -82,9 +82,9 @@ jobs:

- name: Create release bundle from JFrog build
# Platform URL required for lifecycle commands (e.g release bundle management)
run: jf release-bundle-create --url "${{ env.JFROG_URL }}" --project=clients --signing-key=aerospike --sync --spec=./releasebundle-filespec.json aerospike-java-proxy-client ${{ steps.get-proxy-client-version.outputs.version }}
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 }}
working-directory: .github/workflows

- name: Promote release bundle to DEV stage
run: jf release-bundle-promote --url "${{ env.JFROG_URL }}" --project=clients --signing-key=aerospike --sync aerospike-java-proxy-client ${{ steps.get-proxy-client-version.outputs.version }} DEV
run: jf release-bundle-promote --project=clients --signing-key=aerospike --sync aerospike-java-proxy-client ${{ steps.get-proxy-client-version.outputs.version }} DEV
working-directory: .github/workflows

0 comments on commit 9935899

Please sign in to comment.