Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .github/workflows/build-php.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ on:

env:
GITHUB_TOKEN: ${{ secrets.PAT }}
SPC_VERSION: 2.7.1
SPC_VERSION: 2.8.2

jobs:
build:
Expand All @@ -22,7 +22,7 @@ jobs:
strategy:
matrix:
version: ["8.3", "8.4"]
os: [ "macos-13", "macos-latest", "windows-latest", "ubuntu-latest", "ubuntu-24.04-arm" ]
os: [ "macos-15-intel", "macos-latest", "windows-latest", "ubuntu-latest", "ubuntu-24.04-arm" ]

continue-on-error: true

Expand All @@ -33,9 +33,9 @@ jobs:
shell: bash
run: echo "SPC_BINARY=spc" >> $GITHUB_ENV

- name: Set SPC URL for macos-13
- name: Set SPC URL for macos-15-intel
shell: bash
if: matrix.os == 'macos-13'
if: matrix.os == 'macos-15-intel'
run: echo "SPC_URL=https://github.com/crazywhalecc/static-php-cli/releases/download/${{ env.SPC_VERSION }}/spc-macos-x86_64.tar.gz" >> $GITHUB_ENV

- name: Set SPC URL for macos-latest
Expand All @@ -56,7 +56,7 @@ jobs:
- name: Set SPC URL for windows-latest
shell: bash
if: matrix.os == 'windows-latest'
run: |
run: |
echo "SPC_URL=https://github.com/crazywhalecc/static-php-cli/releases/download/${{ env.SPC_VERSION }}/spc-windows-x64.exe" >> $GITHUB_ENV
echo "SPC_BINARY=spc.exe" >> $GITHUB_ENV

Expand Down
Loading