Refresh WordPress assets #61
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: 'Refresh WordPress assets' | |
on: | |
workflow_dispatch: | |
# Every day at 8am UTC | |
schedule: | |
- cron: '0 8 * * *' | |
jobs: | |
build_and_deploy: | |
# Only run this workflow from the trunk branch and when it's triggered by dmsnell OR adamziel | |
if: > | |
github.ref == 'refs/heads/trunk' && ( | |
github.actor == 'adamziel' || | |
github.actor == 'dmsnell' | |
) | |
runs-on: ubuntu-latest | |
environment: | |
name: wordpress-assets | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
ref: ${{ github.event.pull_request.head.ref }} | |
clean: true | |
fetch-depth: 0 | |
persist-credentials: false | |
- uses: ./.github/actions/prepare-playground | |
- name: 'Recompile WordPress' | |
shell: bash | |
run: npx nx recompile-wordpress:all playground-remote | |
- name: Config git user | |
run: | | |
git config --global user.name "deployment_bot" | |
git config --global user.email "[email protected]" | |
git remote set-url origin https://${{ secrets.GH_ACTOR }}:${{ secrets.GH_TOKEN }}@github.com/${{ github.repository }} | |
git add -A | |
git commit -a -m "Recompile WordPress" | |
git pull --rebase | |
# Push if the pull did not result in a conflict | |
if [ $? -eq 0 ]; then | |
git push origin HEAD:trunk | |
fi; |