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.
1 parent d356f8e commit dcb1605Copy full SHA for dcb1605
.github/workflows/build-test-windows.yml
@@ -38,13 +38,8 @@ jobs:
38
uses: docker/setup-buildx-action@v3
39
40
- name: Build image
41
- uses: docker/build-push-action@v6
42
- with:
43
- push: false
44
- load: true
45
- context: .
46
- file: ./${{ steps.short-version.outputs.result }}/${{ matrix.variant }}/Dockerfile
47
- tags: node:${{ matrix.version }}-${{ matrix.variant }}
+ run: |
+ docker build --file ./${{ steps.short-version.outputs.result }}/${{ matrix.variant }}/Dockerfile --tag node:${{ matrix.version }}-${{ matrix.variant }} .
48
49
- name: Test for node version
50
run: |
0 commit comments