Skip to content

Commit f8452cd

Browse files
committed
use token for osx
1 parent 439037b commit f8452cd

1 file changed

Lines changed: 9 additions & 3 deletions

File tree

.github/workflows/build-cli.yaml

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -147,11 +147,17 @@ jobs:
147147
path: dist
148148
key: ${{ matrix.platform }}-${{ hashFiles('cli/*.mod') }}
149149
- name: Run doctor
150-
run: BUILD=no cli/build-php.sh
150+
run: |
151+
export GITHUB_TOKEN "${{ secrets.GITHUB_TOKEN }}"
152+
BUILD=no cli/build-php.sh
151153
- name: Build php
152-
run: cli/build-php.sh
154+
run: |
155+
export GITHUB_TOKEN "${{ secrets.GITHUB_TOKEN }}"
156+
cli/build-php.sh
153157
- name: Build cli
154-
run: cd cli && ./build.sh
158+
run: |
159+
export GITHUB_TOKEN "${{ secrets.GITHUB_TOKEN }}"
160+
cd cli && ./build.sh
155161
- run: ls -lah cli/dist/
156162
- run: ls -lah dist/ || true
157163
- name: Archive artifacts

0 commit comments

Comments
 (0)