diff --git a/.github/workflows/build-tamagotchi.yml b/.github/workflows/build-tamagotchi.yml index d3ffeb31c..534d6e8f4 100644 --- a/.github/workflows/build-tamagotchi.yml +++ b/.github/workflows/build-tamagotchi.yml @@ -36,6 +36,12 @@ jobs: run: | echo "PRODUCT_NAME=$(jq -r '.productName' apps/stage-tamagotchi/src-tauri/tauri.conf.json)" >> $GITHUB_ENV + - name: Debug Environment + run: | + echo "PRODUCT_NAME: '${{ env.PRODUCT_NAME }}'" + ls -la bundle/ || echo "bundle directory doesn't exist" + find . -name "*setup.exe" -o -name "*.AppImage" -o -name "*.dmg" || echo "No artifacts found" + - name: Install pnpm uses: pnpm/action-setup@v4 with: @@ -73,6 +79,10 @@ jobs: - name: Rename Artifacts run: node apps/stage-tamagotchi/scripts/rename-artifacts.js ${{ matrix.target }} + - name: Debug After Rename + run: | + ls -la bundle/ || echo "bundle directory doesn't exist after rename" + - name: Upload To GitHub Releases uses: softprops/action-gh-release@v2 with: diff --git a/.github/workflows/release-tamagotchi.yml b/.github/workflows/release-tamagotchi.yml index 4551d24d3..0e3d7f3b7 100644 --- a/.github/workflows/release-tamagotchi.yml +++ b/.github/workflows/release-tamagotchi.yml @@ -33,12 +33,6 @@ jobs: run: | echo "PRODUCT_NAME=$(jq -r '.productName' apps/stage-tamagotchi/src-tauri/tauri.conf.json)" >> $GITHUB_ENV - - name: Debug Environment - run: | - echo "PRODUCT_NAME: '${{ env.PRODUCT_NAME }}'" - ls -la bundle/ || echo "bundle directory doesn't exist" - find . -name "*setup.exe" -o -name "*.AppImage" -o -name "*.dmg" || echo "No artifacts found" - - name: Install pnpm uses: pnpm/action-setup@v4 with: @@ -76,10 +70,6 @@ jobs: - name: Rename Artifacts run: node apps/stage-tamagotchi/scripts/rename-artifacts.js ${{ matrix.target }} - - name: Debug After Rename - run: | - ls -la bundle/ || echo "bundle directory doesn't exist after rename" - - name: Upload To GitHub Releases uses: softprops/action-gh-release@v2 with: