We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bb5eae7 commit f9a7da3Copy full SHA for f9a7da3
.github/workflows/deploy.yml
@@ -7,14 +7,15 @@ on:
7
jobs:
8
deploy:
9
runs-on: ubuntu-latest
10
+ timeout-minutes: 5
11
12
steps:
- - uses: actions/checkout@v2
13
+ - uses: actions/checkout@v4
14
15
- name: npm install
- uses: actions/setup-node@v1
16
+ uses: actions/setup-node@v4
17
with:
- node-version: '12'
18
+ node-version: 20
19
- run: npm install --only=dev
20
- run: node scripts/ssr.js
21
- run: BUCKET=${{secrets.BUCKET}} AWS_ACCESS_KEY_ID=${{secrets.AWS_ACCESS_KEY_ID}} AWS_SECRET_ACCESS_KEY=${{secrets.AWS_SECRET_ACCESS_KEY}} DISTRIBUTION_ID=${{secrets.DISTRIBUTION_ID}} node scripts/deploy.js
0 commit comments