Skip to content

Commit 689fa80

Browse files
committed
Split deploy step in Deploy workflow
1 parent b7a7960 commit 689fa80

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

.github/workflows/deploy.yml

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,16 @@ jobs:
6363
NODE_ENV: production
6464
- run: npm run build
6565
# - run: npm test
66-
66+
deploy:
67+
needs: [lint, build]
68+
runs-on: ubuntu-latest
69+
env:
70+
NODE_ENV: production
71+
strategy:
72+
matrix:
73+
node-version: [20.x]
74+
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
75+
steps:
6776
- name: Setup Pages
6877
uses: actions/configure-pages@v3
6978

0 commit comments

Comments
 (0)