We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1bd1019 commit 05b4952Copy full SHA for 05b4952
.github/workflows/prod.yml
@@ -0,0 +1,21 @@
1
+name: "Build and Deploy to Production"
2
+
3
+on:
4
+ push:
5
+ branches: ["master"]
6
+jobs:
7
+ build-porfolio:
8
+ runs-on: ubuntu-latest
9
+ steps:
10
+ - uses: actions/checkout@v3
11
12
+ - name: "Installing Node.js"
13
+ uses: actions/setup-node@v3
14
+ with:
15
+ node-version: "22"
16
17
+ - name: "Installing Dependencies"
18
+ run: npm install
19
20
+ - name: "Building Project"
21
+ run: npm run build
0 commit comments