Skip to content

Commit

Permalink
Update CI-e2e.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
justinmerrell committed Aug 14, 2023
1 parent 0770e58 commit 22e72e4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/CI-e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ jobs:
- name: Clone and patch mock-worker
run: |
git clone https://github.com/runpod-workers/mock-worker
echo "Installing runpod-python from ${{ github.event.pull_request.base.sha }}"
echo "git+https://github.com/runpod/runpod-python.git@${{ github.event.pull_request.base.sha }}" > mock-worker/builder/requirements.txt
echo "Installing runpod-python from ${{ env.GITHUB_SHA }}"
echo "git+https://github.com/runpod/runpod-python.git@${{ env.GITHUB_SHA }}" > mock-worker/builder/requirements.txt
- name: Set up QEMU
uses: docker/setup-qemu-action@v2
Expand All @@ -40,7 +40,7 @@ jobs:

- name: Define Docker Tag
id: docker_tag
run: echo "DOCKER_TAG=$(echo ${{ github.event.pull_request.base.sha }} | cut -c 1-7)" >> $GITHUB_ENV
run: echo "DOCKER_TAG=$(echo ${{ env.GITHUB_SHA }} | cut -c 1-7)" >> $GITHUB_ENV

- name: Set Docker Tag as Output
id: output_docker_tag
Expand Down

0 comments on commit 22e72e4

Please sign in to comment.