diff --git a/.github/workflows/test-integration-windows.yml b/.github/workflows/test-integration-windows.yml index 63ad3dd2fc..74063b41e6 100644 --- a/.github/workflows/test-integration-windows.yml +++ b/.github/workflows/test-integration-windows.yml @@ -61,9 +61,10 @@ jobs: uses: actions/download-artifact@9bc31d5ccc31df68ecc42ccf4149144866c47d8a # v3.0.2 with: name: '${{ env.CONSUL_BINARY_UPLOAD_NAME }}' - path: C:\bin + path: C:\ + - name: restore mode+x - run: chmod +x C:\bin\consul + run: chmod +x C:\consul.exe - name: Setup TcpDump Docker Image shell: bash diff --git a/Dockerfile-windows b/Dockerfile-windows index 501db14f29..9e6f9ba376 100644 --- a/Dockerfile-windows +++ b/Dockerfile-windows @@ -40,7 +40,7 @@ EXPOSE 8500 8600 8600/udp #RUN curl %CONSUL_URL% -L -o consul.zip #RUN tar -xf consul.zip -C consul -COPY C:\\bin\\consul.exe consul\ +COPY C:\\consul.exe C:\\consul COPY .release/docker/docker-entrypoint-windows.sh C:\\docker-entrypoint-windows.sh ENTRYPOINT ["bash.exe", "docker-entrypoint-windows.sh"]