cleaned up description

This commit is contained in:
2025-08-04 20:19:53 +02:00
parent 16f615f449
commit bbcdfa73f1

View File

@@ -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 path: ${{ needs.detect-project.outputs.project-dir }}/target/x86_64-pc-windows-gnu/release/${{ needs.detect-project.outputs.project-name }}.exe
docker-build: docker-build:
name: Build Docker Images name: Build Linux Docker Image
needs: [native-build, windows-cross] needs: [native-build, windows-cross]
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
@@ -135,19 +135,10 @@ jobs:
name: linux-binary name: linux-binary
path: linux-bin 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 - name: Verify artifacts
run: | run: |
echo "Linux binary:" echo "Linux binary:"
ls -la linux-bin/ ls -la linux-bin/
echo "Windows binary:"
ls -la windows-bin/
- name: Login to Docker Registry - name: Login to Docker Registry
uses: docker/login-action@v3 uses: docker/login-action@v3
@@ -187,6 +178,11 @@ jobs:
name: windows-binary name: windows-binary
path: windows-bin path: windows-bin
- name: Verify artifacts
run: |
echo "Windows binary:"
ls -la windows-bin/
- name: Login to Docker Registry - name: Login to Docker Registry
uses: docker/login-action@v3 uses: docker/login-action@v3
with: with: