Skip to content

Commit

Permalink
copy the application.php for subdom
Browse files Browse the repository at this point in the history
this is getting reset, too, for some reason
  • Loading branch information
jazzsequence committed Jul 31, 2024
1 parent 46aaa50 commit 22c3022
Showing 1 changed file with 10 additions and 4 deletions.
14 changes: 10 additions & 4 deletions .github/workflows/playwright.yml
Original file line number Diff line number Diff line change
Expand Up @@ -417,15 +417,21 @@ jobs:
echo "Copying latest changes and committing to the site."
rsync -a --exclude='.git' --exclude='status-*.txt' --exclude="node_modules" "${{ github.workspace }}/" .
git add -A
git commit -m "Update to latest commit: ${{ env.COMMIT_MSG }}" || true
echo "Installing wp-graphql..."
composer require wp-graphql/wp-graphql
git add composer.json composer.lock
git commit -m "Add WP-GraphQL plugin" || true
git add -A
git commit -m "Update to latest commit: ${{ env.COMMIT_MSG }}" || true
git push origin master || true
echo "Copying the subdomain multisite config/application.php file..."
cp -f "${{ github.workspace }}/.github/fixtures/config/application.subdom.php" config/application.php
git add config/application.php
git commit -m "Add subdomain multisite config" || true
# Wait for the git push to finish.
# Push and wait for the git push to finish.
git push origin master || true
terminus workflow:wait "${{ env.SITE_ID }}".dev
echo "Checking WordPress install status"
Expand Down

0 comments on commit 22c3022

Please sign in to comment.