Version bump to 2.0.9 #145
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: Airtable Sync | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- main | |
jobs: | |
airtable: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Clone repo | |
uses: actions/checkout@v2 | |
- name: Install npm packages | |
run: npm ci | |
- name: Send themeJson files to airtable | |
run: node scripts/send-theme-json.mjs | |
env: | |
AIRTABLE_API_KEY: ${{ secrets.AIRTABLE_API_KEY }} |