diff --git a/.github/workflows/cmake-release.yml b/.github/workflows/cmake-release.yml index 4708f1576..32b6857fa 100644 --- a/.github/workflows/cmake-release.yml +++ b/.github/workflows/cmake-release.yml @@ -16,9 +16,9 @@ jobs: steps: - uses: actions/checkout@v4 - name: Download w64devkit - run: invoke-webrequest https://github.com/skeeto/w64devkit/releases/download/v1.23.0/w64devkit-i686-1.23.0.zip -outfile ${{github.workspace}}\w64devkit.zip + run: invoke-webrequest https://github.com/skeeto/w64devkit/releases/download/v2.0.0/w64devkit-x86-2.0.0.exe -outfile ${{github.workspace}}\w64devkit.exe - name: Extract w64devkit - run: expand-archive -path ${{github.workspace}}\w64devkit.zip -destinationpath ${{github.workspace}} + run: ${{github.workspace}}\w64devkit.exe -y - name: Set environment variables and build run: | $env:Path = "${{github.workspace}}\w64devkit\bin;" + $env:Path @@ -47,9 +47,9 @@ jobs: steps: - uses: actions/checkout@v4 - name: Download w64devkit - run: invoke-webrequest https://github.com/skeeto/w64devkit/releases/download/v1.23.0/w64devkit-1.23.0.zip -outfile ${{github.workspace}}\w64devkit.zip + run: invoke-webrequest https://github.com/skeeto/w64devkit/releases/download/v2.0.0/w64devkit-x64-2.0.0.exe -outfile ${{github.workspace}}\w64devkit.exe - name: Extract w64devkit - run: expand-archive -path ${{github.workspace}}\w64devkit.zip -destinationpath ${{github.workspace}} + run: ${{github.workspace}}\w64devkit.exe -y - name: Set environment variables and build run: | $env:Path = "${{github.workspace}}\w64devkit\bin;" + $env:Path diff --git a/.github/workflows/cmake.yml b/.github/workflows/cmake.yml index bde6fd119..71fd1ab31 100644 --- a/.github/workflows/cmake.yml +++ b/.github/workflows/cmake.yml @@ -49,9 +49,9 @@ jobs: steps: - uses: actions/checkout@v4 - name: Download w64devkit - run: invoke-webrequest https://github.com/skeeto/w64devkit/releases/download/v1.23.0/w64devkit-1.23.0.zip -outfile ${{github.workspace}}\w64devkit.zip + run: invoke-webrequest https://github.com/skeeto/w64devkit/releases/download/v2.0.0/w64devkit-x64-2.0.0.exe -outfile ${{github.workspace}}\w64devkit.exe - name: Extract w64devkit - run: expand-archive -path ${{github.workspace}}\w64devkit.zip -destinationpath ${{github.workspace}} + run: ${{github.workspace}}\w64devkit.exe -y - name: Set environment variables and build run: | $env:Path = "${{github.workspace}}\w64devkit\bin;" + $env:Path