Skip to content

Commit

Permalink
🐛 Fix(custom): change to macos-13
Browse files Browse the repository at this point in the history
  • Loading branch information
Kuingsmile committed Dec 4, 2024
1 parent 1517d62 commit 3efd2c2
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/mac_beta.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,15 +21,15 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [macos-14]
os: [macos-13]

steps:
- name: Check out git repository
uses: actions/checkout@v2

# step2: sign
- name: Install the Apple certificates
if: matrix.os == 'macos-14'
if: matrix.os == 'macos-13'
run: |
CERTIFICATE_PATH=$RUNNER_TEMP/build_certificate.p12
echo -n "$BUILD_CERTIFICATE_BASE64" | base64 --decode -o $CERTIFICATE_PATH
Expand All @@ -47,7 +47,7 @@ jobs:
# step3: yarn
- name: Yarn install macos
if: matrix.os == 'macos-14'
if: matrix.os == 'macos-13'
run: |
yarn
yarn global add xvfb-maybe
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/mac_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [macos-14]
os: [macos-13]

# create steps
steps:
Expand All @@ -36,7 +36,7 @@ jobs:

# step2: sign
- name: Install the Apple certificates
if: matrix.os == 'macos-14'
if: matrix.os == 'macos-13'
run: |
CERTIFICATE_PATH=$RUNNER_TEMP/build_certificate.p12
echo -n "$BUILD_CERTIFICATE_BASE64" | base64 --decode -o $CERTIFICATE_PATH
Expand All @@ -49,7 +49,7 @@ jobs:

# step3: yarn
- name: Yarn install macos
if: matrix.os == 'macos-14'
if: matrix.os == 'macos-13'
run: |
yarn
yarn global add xvfb-maybe
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-14, windows-latest]
os: [ubuntu-latest, macos-13, windows-latest]

steps:

Expand All @@ -37,7 +37,7 @@ jobs:

# step2: sign
- name: Install the Apple certificates
if: matrix.os == 'macos-14'
if: matrix.os == 'macos-13'
run: |
CERTIFICATE_PATH=$RUNNER_TEMP/build_certificate.p12
echo -n "$BUILD_CERTIFICATE_BASE64" | base64 --decode -o $CERTIFICATE_PATH
Expand All @@ -55,7 +55,7 @@ jobs:
# step3: yarn
- name: Yarn install macos
if: matrix.os == 'macos-14'
if: matrix.os == 'macos-13'
run: |
yarn
yarn global add xvfb-maybe
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/mas.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [macos-14]
os: [macos-13]

# create steps
steps:
Expand All @@ -36,7 +36,7 @@ jobs:

# step2: sign
- name: Install the Apple certificates
if: matrix.os == 'macos-14'
if: matrix.os == 'macos-13'
run: |
PP_PATH=$RUNNER_TEMP/build/piclistmas.provisionprofile
echo -n "$BUILD_PROVISION_PROFILE_BASE64" | base64 --decode -o $PP_PATH
Expand Down

0 comments on commit 3efd2c2

Please sign in to comment.