diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 925389f..a1e3458 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -122,7 +122,7 @@ jobs: path: ${{ needs.detect-project.outputs.project-dir }}/target/x86_64-pc-windows-gnu/release/${{ needs.detect-project.outputs.project-name }}.exe docker-build: - name: Build Docker Images + name: Build Linux Docker Image needs: [native-build, windows-cross] runs-on: ubuntu-latest steps: @@ -135,19 +135,10 @@ jobs: name: linux-binary path: linux-bin - - name: Download Windows artifact - id: download-windows - uses: actions/download-artifact@v3 - with: - name: windows-binary - path: windows-bin - - name: Verify artifacts run: | echo "Linux binary:" ls -la linux-bin/ - echo "Windows binary:" - ls -la windows-bin/ - name: Login to Docker Registry uses: docker/login-action@v3 @@ -186,6 +177,11 @@ jobs: with: name: windows-binary path: windows-bin + + - name: Verify artifacts + run: | + echo "Windows binary:" + ls -la windows-bin/ - name: Login to Docker Registry uses: docker/login-action@v3