diff --git a/.github/workflows/beta-release.yml b/.github/workflows/beta-release.yml index 6da6dfd3..848c2d6a 100644 --- a/.github/workflows/beta-release.yml +++ b/.github/workflows/beta-release.yml @@ -112,7 +112,7 @@ jobs: run: cd apps/frontend && npm run build - name: Package macOS (Intel) - run: cd apps/frontend && npm run package:mac -- --arch=x64 + run: cd apps/frontend && npm run package:mac -- --x64 env: GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} CSC_LINK: ${{ secrets.MAC_CERTIFICATE }} @@ -180,7 +180,7 @@ jobs: run: cd apps/frontend && npm run build - name: Package macOS (Apple Silicon) - run: cd apps/frontend && npm run package:mac -- --arch=arm64 + run: cd apps/frontend && npm run package:mac -- --arm64 env: GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} CSC_LINK: ${{ secrets.MAC_CERTIFICATE }} diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index aa5b1719..71d8cdb4 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -47,7 +47,7 @@ jobs: run: cd apps/frontend && npm run build - name: Package macOS (Intel) - run: cd apps/frontend && npm run package:mac -- --arch=x64 + run: cd apps/frontend && npm run package:mac -- --x64 env: GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} CSC_LINK: ${{ secrets.MAC_CERTIFICATE }} @@ -116,7 +116,7 @@ jobs: run: cd apps/frontend && npm run build - name: Package macOS (Apple Silicon) - run: cd apps/frontend && npm run package:mac -- --arch=arm64 + run: cd apps/frontend && npm run package:mac -- --arm64 env: GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} CSC_LINK: ${{ secrets.MAC_CERTIFICATE }}