Skip to content

Commit

Permalink
Fix docker image push against release-0.3 branch (#460)
Browse files Browse the repository at this point in the history
  • Loading branch information
Jeffwan committed Aug 11, 2022
1 parent 55e87b5 commit f30e53c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/test-job.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ jobs:
docker push kuberay/apiserver:nightly
working-directory: ${{env.working-directory}}
if: contains(fromJson('["refs/heads/master", "refs/heads/main"]'), github.ref)
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 @@ -252,7 +252,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 @@ -261,7 +261,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 f30e53c

Please sign in to comment.