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