Skip to content

Commit 6c0c2c4

Browse files
committed
Use the runner temp folder
GitHub runners don't necessary use /tmp as their temporary folder
1 parent 8e99e1c commit 6c0c2c4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/build-test-publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,7 @@ jobs:
195195
uses: actions/download-artifact@v4
196196
with:
197197
name: operator_image
198-
path: /tmp
198+
path: ${{ runner.temp }}/operator-image
199199

200200
- name: Install Carvel
201201
uses: carvel-dev/[email protected]
@@ -213,7 +213,7 @@ jobs:
213213
214214
- name: Install operator from build
215215
run: |
216-
kind load image-archive /tmp/operator.tar --name system-testing
216+
kind load image-archive ${{ runner.temp }}/operator-image/operator.tar --name system-testing
217217
ytt -f tmp/messaging-topology-operator-with-certmanager.yaml -f config/ytt_overlays/never_pull.yml | kubectl apply -f-
218218
kubectl --namespace=rabbitmq-system wait --for=condition=Available deployment/messaging-topology-operator
219219

0 commit comments

Comments
 (0)