Skip to content

Moving transfer-protocol to https://github.com/adamziel/site-transfer… #11

Moving transfer-protocol to https://github.com/adamziel/site-transfer…

Moving transfer-protocol to https://github.com/adamziel/site-transfer… #11

Workflow file for this run

name: PHP Preprocess and Commit
on:
push:
branches:
- trunk
jobs:
php-preprocess:
runs-on: ubuntu-latest
steps:
- name: Setup SSH Keys
uses: webfactory/[email protected]
with:
ssh-private-key: ${{ secrets.GITHUB_TOKEN }}
- name: Checkout repository
uses: actions/checkout@v3
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: '8.1' # Change to the desired PHP version
coverage: none
- name: Run PHP preprocess
run: php -dphar.readonly=0 preprocess-wxr.php --bundle
- name: Push rebuilt WordPress to GitHub
run: |
git config --global user.name "deployment_bot"
git config --global user.email "[email protected]"
git add -A
git commit -a -m "Reindex and reformat Blueprints"
git pull --rebase
if [ $? -eq 0 ]; then
git push [email protected]:${{ github.repository }}.git --follow-tags
fi;