Skip to content

Commit e46e0ce

Browse files
Try fixing dirty source directory for publish
1 parent f5e0fe8 commit e46e0ce

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/workflow.yml

+6-6
Original file line numberDiff line numberDiff line change
@@ -21,17 +21,17 @@ jobs:
2121
- name: Create bin dir
2222
run: |
2323
mkdir -p bin
24-
echo "::add-path::$GITHUB_WORKSPACE/bin"
24+
echo "::add-path::/tmp/bin"
2525
2626
- name: Install new jq version
2727
run: |
28-
curl https://github.com/stedolan/jq/releases/download/jq-1.6/jq-linux64 -L -o $GITHUB_WORKSPACE/bin/jq
28+
curl https://github.com/stedolan/jq/releases/download/jq-1.6/jq-linux64 -L -o /tmp/bin/jq
2929
3030
- name: Install argo
3131
run: |
32-
curl https://github.com/argoproj/argo/releases/download/v2.9.3/argo-linux-amd64 -L -o $GITHUB_WORKSPACE/bin/argo
32+
curl https://github.com/argoproj/argo/releases/download/v2.9.3/argo-linux-amd64 -L -o /tmp/bin/argo
3333
- name: Make bin executable
34-
run: chmod +x $GITHUB_WORKSPACE/bin/*
34+
run: chmod +x /tmp/bin/*
3535

3636
- name: Cache pip
3737
uses: actions/cache@v2
@@ -61,12 +61,12 @@ jobs:
6161
if: steps.cache-buildx.outputs.cache-hit != 'true'
6262
with:
6363
repository: docker/buildx
64-
path: buildx
64+
path: /tmp/buildx-source
6565
ref: fd6de6b6aeac780c59e5079a96b068076b676d73
6666

6767
- name: Install buildx
6868
if: steps.cache-buildx.outputs.cache-hit != 'true'
69-
working-directory: ./buildx
69+
working-directory: /tmp/buildx-source
7070
run: make install
7171

7272
- name: Install doctl

0 commit comments

Comments
 (0)