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 b77145f commit 6648c6dCopy full SHA for 6648c6d
.github/workflows/deploy.yml
@@ -0,0 +1,27 @@
1
+name: Deployment
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - master
7
8
+jobs:
9
+ deploy:
10
+ runs-on: ubuntu-latest
11
12
+ steps:
13
+ - name: Checkout
14
+ uses: actions/checkout@master
15
16
+ - name: Setup Node and NPM
17
+ uses: actions/setup-node@v3
18
+ with:
19
+ node-version: 18.0.0
20
21
+ - name: Install NPM Packages
22
+ run: npm ci
23
24
+ - name: Deploy
25
+ run: npm run deploy
26
+ env:
27
+ ACCESS_TOKEN: ${{ secrets.ACCESS_TOKEN }}
0 commit comments