Skip to content

Commit dcb1605

Browse files
committed
Don't use push action as it doesn't support windows
1 parent d356f8e commit dcb1605

File tree

1 file changed

+2
-7
lines changed

1 file changed

+2
-7
lines changed

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

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -38,13 +38,8 @@ jobs:
3838
uses: docker/setup-buildx-action@v3
3939

4040
- 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 }}
41+
run: |
42+
docker build --file ./${{ steps.short-version.outputs.result }}/${{ matrix.variant }}/Dockerfile --tag node:${{ matrix.version }}-${{ matrix.variant }} .
4843
4944
- name: Test for node version
5045
run: |

0 commit comments

Comments
 (0)