Update app-icon-badge package example + new architecture (#1351) #32
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: Cleanup data blobs | |
on: | |
push: | |
branches: [ main ] | |
schedule: | |
# Run once a week on Thursday at midnight - https://crontab.guru/#0_0_*_*_2 | |
- cron: '0 0 * * 2' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Use Node.js 20 | |
uses: actions/setup-node@v4 | |
with: | |
node-version: '20' | |
- name: Install dependencies | |
run: yarn | |
- name: Cleanup data blobs | |
run: yarn ci:cleanup-blobs | |
env: | |
BLOB_READ_WRITE_TOKEN: ${{ secrets.BLOB_READ_WRITE_TOKEN }} |