Skip to content

Commit

Permalink
Fix yarn in GitHub Actions.
Browse files Browse the repository at this point in the history
  • Loading branch information
kagg-design committed Mar 18, 2023
1 parent 4995512 commit 673b5f2
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Expand Up @@ -9,7 +9,7 @@ jobs:
strategy:
matrix:
os: [ ubuntu-latest ]
php-version: [ '8.2' ]
php-version: [ '5.6', '7.0', '7.1', '7.2', '7.3', '7.4', '8.0', '8.1', '8.2' ]

name: PHP ${{ matrix.php-version }} on ${{ matrix.os }}

Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/deploy-to-wp-org.yml
Expand Up @@ -29,7 +29,10 @@ jobs:
- name: Install dependencies in prod version
run: |
composer config github-oauth.github.com ${{ secrets.GITHUB_TOKEN }}
make install-prod
composer install --no-dev
yarn set version stable
yarn
yarn run prod
env:
COMPOSER_TOKEN: ${{ secrets.GITHUB_TOKEN }}

Expand Down

0 comments on commit 673b5f2

Please sign in to comment.