We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents fa4d481 + 475306d commit e0e8572Copy full SHA for e0e8572
action.yml
@@ -40,8 +40,18 @@ runs:
40
run: echo "::set-output name=tag::sha-${{ github.sha }}"
41
shell: bash
42
43
+ # docker context must be created prior to setting up Docker Buildx
44
+ # https://github.com/actions-runner-controller/actions-runner-controller/issues/893
45
+ - name: Set up Docker Context for Buildx
46
+ shell: bash
47
+ id: buildx-context
48
+ run: |
49
+ docker context create buildx-context
50
+
51
- name: Set up Docker Buildx
52
uses: docker/setup-buildx-action@v1
53
+ with:
54
+ endpoint: buildx-context
55
56
- name: Login
57
uses: docker/login-action@v2
0 commit comments