Update airtable.yml #5
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 Import | |
on: [push] | |
jobs: | |
airtable: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Use Node.js 18.x | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18.x | |
- uses: ruby/setup-ruby@v1 | |
with: | |
bundler-cache: true | |
- name: npm install | |
run: | | |
npm install | |
- name: run Airtable Import | |
run: | | |
node airtable.js | |
env: | |
AIRTABLE_API_KEY: ${{secrets.AIRTABLE_API_KEY}} | |
- run: | | |
bundle install | |
bundle exec jekyll build |