We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0a91621 commit 75baeebCopy full SHA for 75baeeb
1 file changed
.github/workflows/deploy.yml
@@ -0,0 +1,24 @@
1
+name: 🚀 Deploy Static Web
2
+
3
+on:
4
+ push:
5
+ branches: [master]
6
7
+jobs:
8
+ build:
9
+ runs-on: self-hosted
10
11
+ strategy:
12
+ matrix:
13
+ node-version: [18.x]
14
15
+ steps:
16
+ - uses: actions/checkout@v2
17
+ - name: Use Node.js ${{ matrix.node-version }}
18
+ uses: actions/setup-node@v2
19
+ with:
20
+ node-version: ${{ matrix.node-version }}
21
+ cache: "npm"
22
23
+ - run: npm install
24
+ - run: npm run build
0 commit comments