Auto Update Assets #211
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: auto-update-assets | |
on: | |
push: | |
branches: | |
- 'main' | |
schedule: | |
- cron: '0 0 * * *' | |
jobs: | |
builder: | |
runs-on: ubuntu-latest | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Update Client Extensions Samples | |
working-directory: ./lfr/pkg/assets/tpl/cx | |
run: | | |
rm -r liferay-portal | |
git clone --depth 1 --filter=blob:none --no-checkout https://github.com/liferay/liferay-portal | |
cd liferay-portal | |
git sparse-checkout init --no-cone | |
git sparse-checkout set workspaces/liferay-sample-workspace/client-extensions | |
git checkout master | |
rm -r .git | |
- name: Commit Client Extensions Changes | |
run: | | |
git config --global user.name 'github-actions[bot]' | |
git config --global user.email '41898282+github-actions[bot]@users.noreply.github.com' | |
git add ./lfr/pkg/assets/tpl/cx/ | |
git commit -am "chore: auto update client extensions samples" || echo "We're good for now. See you next time!" | |
git push |