Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Enable docker image push for release-0.3 branch #462

Merged
merged 1 commit into from
Aug 13, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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