Skip to content

Commit ca9c374

Browse files
author
KubeSaw
committed
requested changes
1 parent 99f8c7a commit ca9c374

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

.github/workflows/publish-sandbox-ui-for-ui-e2e-tests.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -90,12 +90,10 @@ jobs:
9090
- name: Publish current Developer Sandbox UI (PR event)
9191
if: ${{ github.event_name == 'pull_request_target' }}
9292
run: |
93-
PROVIDED_REF="${{ github.event.pull_request.head.ref }}"
94-
make push-sandbox-plugin QUAY_NAMESPACE=codeready-toolchain-test IMAGE_BUILDER=podman PULL_PULL_SHA=${{ github.event.pull_request.head.sha }} PULL_NUMBER=${{ github.event.pull_request.number }} AUTHOR=${{ github.event.pull_request.head.user.login }} BRANCH_NAME="${PROVIDED_REF}"
93+
make push-sandbox-plugin QUAY_NAMESPACE=codeready-toolchain-test IMAGE_BUILDER=podman PULL_PULL_SHA=${{ github.event.pull_request.head.sha }} PULL_NUMBER=${{ github.event.pull_request.number }} AUTHOR=${{ github.event.pull_request.head.user.login }} BRANCH_NAME=${{ github.event.pull_request.head.ref }}
9594
9695
# Publish Developer Sandbox UI for comment events
9796
- name: Publish current Developer Sandbox UI (comment event)
9897
if: ${{ github.event_name == 'issue_comment' }}
9998
run: |
100-
PROVIDED_REF="${{ fromJson(steps.request.outputs.data).head.ref }}"
101-
make push-sandbox-plugin QUAY_NAMESPACE=codeready-toolchain-test IMAGE_BUILDER=podman PULL_PULL_SHA=${{ fromJson(steps.request.outputs.data).head.sha }} PULL_NUMBER=${{ fromJson(steps.request.outputs.data).number }} AUTHOR=${{ fromJson(steps.request.outputs.data).head.user.login }} BRANCH_NAME="${PROVIDED_REF}"
99+
make push-sandbox-plugin QUAY_NAMESPACE=codeready-toolchain-test IMAGE_BUILDER=podman PULL_PULL_SHA=${{ fromJson(steps.request.outputs.data).head.sha }} PULL_NUMBER=${{ fromJson(steps.request.outputs.data).number }} AUTHOR=${{ fromJson(steps.request.outputs.data).head.user.login }} BRANCH_NAME=${{ fromJson(steps.request.outputs.data).head.ref }}

0 commit comments

Comments
 (0)