Skip to content

Commit

Permalink
Enable docker image push for release-0.3 branch (ray-project#462)
Browse files Browse the repository at this point in the history
  • Loading branch information
Jeffwan committed Aug 13, 2022
1 parent 8e56c16 commit 349f300
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/test-job.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ jobs:
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
if: ${{ github.ref == 'refs/heads/master' }}
if: contains(fromJson('["refs/heads/master", "refs/heads/release-0.3"]'), github.ref)

- name: Push Apiserver to DockerHub
run: |
Expand All @@ -176,7 +176,7 @@ jobs:
docker push kuberay/apiserver:nightly
working-directory: ${{env.working-directory}}
if: ${{ github.ref == 'refs/heads/master' }}
if: contains(fromJson('["refs/heads/master", "refs/heads/release-0.3"]'), github.ref)

- name: Build CLI
run: go build -o kuberay -a main.go
Expand Down Expand Up @@ -249,7 +249,7 @@ jobs:
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
if: ${{ github.ref == 'refs/heads/master' }}
if: contains(fromJson('["refs/heads/master", "refs/heads/release-0.3"]'), github.ref)

- name: Push Operator to DockerHub
run: |
Expand All @@ -258,7 +258,7 @@ jobs:
docker push kuberay/operator:nightly
working-directory: ${{env.working-directory}}
if: ${{ github.ref == 'refs/heads/master' }}
if: contains(fromJson('["refs/heads/master", "refs/heads/release-0.3"]'), github.ref)

test-compatibility-1_11_0:
needs:
Expand Down

0 comments on commit 349f300

Please sign in to comment.