Skip to content

Commit 3d5cb64

Browse files
committed
fix: add AIRTABLE ID
1 parent 75b4fc9 commit 3d5cb64

File tree

4 files changed

+6
-2
lines changed

4 files changed

+6
-2
lines changed

.github/workflows/dev.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ jobs:
3535
- name: Render book
3636
run: Rscript -e 'babelquarto::render_book()'
3737
env: # Set the secret as an input
38+
AIRTABLE_ID: ${{ secrets.AIRTABLE_ID }}
3839
AIRTABLE_API_KEY: ${{ secrets.AIRTABLE_API_KEY }}
3940
ZENODO_TOKEN: ${{ secrets.ZENODO_TOKEN }}
4041
BABELQUARTO_CI_URL: https://devdevguide.netlify.app

.github/workflows/pr.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ jobs:
3737
- name: Render book
3838
run: Rscript -e 'babelquarto::render_book()'
3939
env: # Set the secret as an input
40+
AIRTABLE_ID: ${{ secrets.AIRTABLE_ID }}
4041
AIRTABLE_API_KEY: ${{ secrets.AIRTABLE_API_KEY }}
4142
ZENODO_TOKEN: ${{ secrets.ZENODO_TOKEN }}
4243
BABELQUARTO_CI_URL: ""

.github/workflows/release.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ jobs:
2929
- name: Render book
3030
run: Rscript -e 'babelquarto::render_book()'
3131
env: # Set the secret as an input
32+
AIRTABLE_ID: ${{ secrets.AIRTABLE_ID }}
3233
AIRTABLE_API_KEY: ${{ secrets.AIRTABLE_API_KEY }}
3334
ZENODO_TOKEN: ${{ secrets.ZENODO_TOKEN }}
3435

.github/workflows/scheduled-manual-main.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@ jobs:
1313
name: Render-Book
1414
runs-on: ubuntu-latest
1515
steps:
16-
- uses: actions/checkout@v2
16+
- uses: actions/checkout@v2
1717
with:
1818
fetch-depth: 0
19-
19+
2020
- name: Checkout latest release tag
2121
run: |
2222
LATEST_TAG=$(git describe --tags `git rev-list --tags --max-count=1`)
@@ -39,6 +39,7 @@ jobs:
3939
- name: Render book
4040
run: Rscript -e 'babelquarto::render_book()'
4141
env: # Set the secret as an input
42+
AIRTABLE_ID: ${{ secrets.AIRTABLE_ID }}
4243
AIRTABLE_API_KEY: ${{ secrets.AIRTABLE_API_KEY }}
4344
ZENODO_TOKEN: ${{ secrets.ZENODO_TOKEN }}
4445

0 commit comments

Comments
 (0)