diff --git a/.github/workflows/test-integration-windows.yml b/.github/workflows/test-integration-windows.yml index 65e58017ed..734a27dc3a 100644 --- a/.github/workflows/test-integration-windows.yml +++ b/.github/workflows/test-integration-windows.yml @@ -61,10 +61,10 @@ jobs: uses: actions/download-artifact@9bc31d5ccc31df68ecc42ccf4149144866c47d8a # v3.0.2 with: name: '${{ env.CONSUL_BINARY_UPLOAD_NAME }}' - path: C:\bin\ + path: ${{ github.workspace }} - name: restore mode+x - run: chmod +x C:\bin\consul.exe + run: chmod +x ${{ github.workspace }}\consul.exe - name: Setup TcpDump Docker Image shell: bash diff --git a/Dockerfile-windows b/Dockerfile-windows index b5386ec188..14582908db 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 C:\\consul +COPY consul.exe C:\\consul COPY .release/docker/docker-entrypoint-windows.sh C:\\docker-entrypoint-windows.sh ENTRYPOINT ["bash.exe", "docker-entrypoint-windows.sh"]