Moving transfer-protocol to https://github.com/adamziel/site-transfer… #11
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; |