From 8eacac004fa11f7e2b6e964439653805960856cb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Frankiewicz?= Date: Sun, 29 Oct 2023 17:16:53 +0100 Subject: [PATCH] unblock workflow --- .github/workflows/refresh-wordpress.yml | 72 ++++++++++++------------- 1 file changed, 36 insertions(+), 36 deletions(-) diff --git a/.github/workflows/refresh-wordpress.yml b/.github/workflows/refresh-wordpress.yml index 3b809f3c14..544b715b66 100644 --- a/.github/workflows/refresh-wordpress.yml +++ b/.github/workflows/refresh-wordpress.yml @@ -1,43 +1,43 @@ -#name: 'Refresh WordPress assets' -# -#on: -# workflow_dispatch: -# # Every day at 8am UTC +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 + +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 "deployment_bot@users.noreply.github.com" -# 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; + + runs-on: ubuntu-latest + environment: + name: wordpress-assets + steps: + - uses: actions/checkout@v3 + with: + ref: ${{ github.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 "deployment_bot@users.noreply.github.com" + 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:${{ github.ref }} + fi;