From b988518746ea6872f4c28be1af274e93fcd9876e Mon Sep 17 00:00:00 2001 From: Logan Jones Date: Wed, 16 Apr 2025 13:25:54 -0500 Subject: [PATCH] fixed windows upload file and named find step --- .github/workflows/wails.yml | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/.github/workflows/wails.yml b/.github/workflows/wails.yml index 089130c..1f86dd2 100644 --- a/.github/workflows/wails.yml +++ b/.github/workflows/wails.yml @@ -43,7 +43,8 @@ jobs: package: false app-working-directory: ${{ github.workspace }} - - run: find ${{ github.workspace }}/build -type f + - name: List Files + run: find ${{ github.workspace }}/build -type f - name: Upload Binaries uses: actions/upload-artifact@v4 @@ -74,7 +75,8 @@ jobs: package: false app-working-directory: ${{ github.workspace }} - - run: find ${{ github.workspace }}/build -type f + - name: List Files + run: find ${{ github.workspace }}/build -type f - name: Upload Binaries uses: actions/upload-artifact@v4 @@ -105,14 +107,15 @@ jobs: package: false app-working-directory: ${{ github.workspace }} - - shell: powershell + - name: List Files + shell: powershell run: Get-ChildItem -Path ${{ github.workspace }}\build -Recurse -File - name: Upload Binaries uses: actions/upload-artifact@v4 with: name: yellowjacket.exe - path: ${{ github.workspace }}\build\bin\yellowjacket + path: ${{ github.workspace }}\build\bin\yellowjacket.exe release: runs-on: ubuntu-latest