diff --git a/.github/workflows/build-mac-arm64.yml b/.github/workflows/build-mac-x64.yml similarity index 89% rename from .github/workflows/build-mac-arm64.yml rename to .github/workflows/build-mac-x64.yml index 6584250a1..41eb75e9c 100644 --- a/.github/workflows/build-mac-arm64.yml +++ b/.github/workflows/build-mac-x64.yml @@ -1,4 +1,4 @@ -name: Build mac arm64 +name: Build mac x64 on: workflow_dispatch: @@ -9,8 +9,8 @@ env: RUDDERSTACK_CLIENT_ID: ${{ secrets.RUDDERSTACK_CLIENT_ID }} jobs: - release-mac-arm64: - runs-on: macos-latest-xlarge + release-mac-x64: + runs-on: macos-13 steps: - name: Checkout code @@ -19,7 +19,7 @@ jobs: - name: Set up Node.js uses: actions/setup-node@v4 with: - node-version: '20' + node-version: '22' - uses: pnpm/action-setup@v3 with: standalone: ${{ runner.os == 'Windows' }} @@ -43,6 +43,6 @@ jobs: echo "VITE_IPFS_API=${{ secrets.VITE_IPFS_API }}" >> .env - name: Build artifacts. - run: pnpm release:mac:arm64 + run: pnpm release:mac:x64 env: NOTARIZE: true diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 878f6eb87..d9ebe217d 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -95,10 +95,10 @@ jobs: run: pnpm dist:linux:ci:rpm - name: Build pacman artifact run: pnpm dist:linux:ci:pacman - build_mac_x64: - runs-on: macos-13 + build_mac_arm64: + runs-on: macos-latest concurrency: - group: build-mac-x64-${{ github.ref }} + group: build-mac-arm64-${{ github.ref }} cancel-in-progress: true steps: - name: Checkout repository. @@ -127,14 +127,14 @@ jobs: echo "VITE_LD_ENVIRONMENT_ID=${{ secrets.VITE_LD_ENVIRONMENT_ID_TEST }}" > .env echo "VITE_IPFS_API=${{ secrets.VITE_IPFS_API }}" >> .env - name: Build artifacts. - run: pnpm run dist:mac:x64 + run: pnpm run dist:mac:arm64 env: NOTARIZE: false - name: Upload Intel build. uses: actions/upload-artifact@v4 with: - name: mac-dmg-x64 - path: dist/HyperPlay*x64.dmg + name: mac-dmg-arm64 + path: dist/HyperPlay*arm64.dmg retention-days: 7 if-no-files-found: error compression-level: 3 diff --git a/.github/workflows/release_macOS.yml b/.github/workflows/release_macOS.yml index 6b7caa887..0340ce2c5 100644 --- a/.github/workflows/release_macOS.yml +++ b/.github/workflows/release_macOS.yml @@ -67,7 +67,7 @@ jobs: if-no-files-found: error release-arm64: - runs-on: macos-latest-xlarge + runs-on: macos-latest steps: - name: Checkout code