diff --git a/.github/workflows/_test.json b/.github/workflows/_test.json index a194c3f..23b821e 100644 --- a/.github/workflows/_test.json +++ b/.github/workflows/_test.json @@ -47,7 +47,7 @@ } }, { "name": "test image", - "run": "docker run --rm --init ${{matrix.arch}}/${{github.sha}} eval -p 'new Date()'" + "run": "docker run --rm --init --platform linux/${{matrix.arch}} ${{github.sha}} eval -p 'new Date()'" }] } } diff --git a/.github/workflows/_test.yaml b/.github/workflows/_test.yaml index 484deee..9d77f51 100644 --- a/.github/workflows/_test.yaml +++ b/.github/workflows/_test.yaml @@ -34,4 +34,4 @@ jobs: file: ${{matrix.distro}}.dockerfile build-args: DENO_VERSION=${{inputs.deno_version}} - name: test image - run: docker run --rm --init ${{matrix.arch}}/${{github.sha}} eval -p 'new Date()' \ No newline at end of file + run: docker run --rm --init --platform linux/${{matrix.arch}} ${{github.sha}} eval -p 'new Date()' \ No newline at end of file