Skip to content

Commit

Permalink
Try a different repo name
Browse files Browse the repository at this point in the history
  • Loading branch information
juliannguyen4 committed Jul 11, 2024
1 parent 9f0cc8e commit 501fcc0
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 @@ -30,15 +30,15 @@ jobs:
# TODO: change to use "latest" tag

- name: Get all tags for proxy server Docker image
run: docker pull --all-tags aerospike.jfrog.io/docker/aerospike-proxy-private
run: docker pull --all-tags aerospike.jfrog.io/docker/aerospike/aerospike-proxy-private

- name: Get the latest tag for proxy server
run: echo LATEST_TAG=$(docker images aerospike.jfrog.io/docker/aerospike-proxy-private --format json | jq -r '.Tag' | head -n 1) >> $GITHUB_ENV
run: echo LATEST_TAG=$(docker images aerospike.jfrog.io/docker/aerospike/aerospike-proxy-private --format json | jq -r '.Tag' | head -n 1) >> $GITHUB_ENV
# Enables pipefail
shell: bash

- name: Run Aerospike Proxy on latest tag
run: docker run -d --name aerospike-proxy -p 4000:4000 aerospike.jfrog.io/docker/aerospike-proxy-private:${{ env.LATEST_TAG }}
run: docker run -d --name aerospike-proxy -p 4000:4000 aerospike.jfrog.io/docker/aerospike/aerospike-proxy-private:${{ env.LATEST_TAG }}

- name: Run tests
run: mvn test -Dtest=com.aerospike.proxy.tests.ProxyTests
Expand Down

0 comments on commit 501fcc0

Please sign in to comment.