From ceb7df9a5a3c87037b8fead491207d09912c0d12 Mon Sep 17 00:00:00 2001 From: Rigidity Date: Sat, 20 Jul 2024 16:56:56 -0400 Subject: [PATCH] fmt --- .github/workflows/release.yaml | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 2da09e8..30d84c0 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -3,7 +3,7 @@ name: Release on: push: tags: - - '*' + - "*" env: # update with the name of the main binary @@ -15,9 +15,7 @@ env: # https://docs.github.com/en/repositories/working-with-files/managing-large-files/about-storage-and-bandwidth-usage use_git_lfs: false - jobs: - # Build for wasm release-wasm: runs-on: ubuntu-latest @@ -42,7 +40,7 @@ jobs: - name: Prepare package run: | wasm-bindgen --no-typescript --out-name bevy_game --out-dir wasm --target web target/wasm32-unknown-unknown/release/${{ env.binary }}.wasm - cp -r assets wasm/ || true # Try to copy, but ignore if it can't copy if source directory does not exist + cp -r assets wasm/ || true # Try to copy, but ignore if it can't copy if source directory does not exist - name: Package as a zip working-directory: ./wasm @@ -202,7 +200,7 @@ jobs: uses: svenstaro/upload-release-action@v2 with: repo_token: ${{ secrets.GITHUB_TOKEN }} - file: ${{ env.binary }}-macOS-intel.dmg + file: ${{ env.binary }}-macOS-intel.dmg asset_name: ${{ env.binary }}-macOS-intel-${{ steps.get_version.outputs.tag }}.dmg tag: ${{ github.ref }} overwrite: true @@ -220,7 +218,7 @@ jobs: - uses: dtolnay/rust-toolchain@stable with: targets: aarch64-apple-darwin - - name: Environment + - name: Environment # macOS 11 was the first version to support ARM run: | export MACOSX_DEPLOYMENT_TARGET="11"