Skip to content

Update build cache #4277

Update build cache

Update build cache #4277

Workflow file for this run

name: Update build cache
# This action checks if there's new proposal data every 12h
# If new proposal data is found the cache will be warmed up & a new build will be generated
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.ref }}
cancel-in-progress: true
on:
workflow_dispatch:
schedule:
- cron: 0 */3 * * *
jobs:
cache-refresh:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b # v3.0.2
with:
token: ${{ secrets.BOT_TOKEN }}
- name: Update cache
uses: ./.github/actions/build
with:
YARN_COMMAND: 'cache:update'
- name: check diff
run: |
if [[ -z $(git status -s) ]]
then
echo "tree is clean"
else
git config --global user.name 'Cache bot'
git config --global user.email '[email protected]'
git commit -am "chore: automated cache update [skip cypress]"
git push
exit
fi