We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ae5b415 commit 7a8f3c3Copy full SHA for 7a8f3c3
โ.github/workflows/dev-deploy.ymlโ
โ.github/workflows/prod-deploy.ymlโ
@@ -0,0 +1,32 @@
1
+name: Deploy - Prod
2
+
3
+on:
4
+ push:
5
+ branches: ['main']
6
7
+jobs:
8
+ deploy:
9
+ runs-on: ubuntu-latest
10
+ steps:
11
+ - name: โจ๏ธ ์์ค์ฝ๋ ํ์ธ์ค!
12
+ uses: actions/checkout@v4
13
14
+ - name: โจ๏ธ Node.js ์ค์น์ค!
15
+ uses: actions/setup-node@v4
16
+ with:
17
+ node-version: 20.x
18
19
+ - name: ๐ฆ ํ๊ฒฝ๋ณ์ ์ค์ ์ค!
20
+ run: echo "${{ secrets.ENV_FILE }}" > .env
21
22
+ - name: ๐ฆ ํจํค์ง ์ค์น์ค!
23
+ run: yarn install
24
25
+ - name: ๐ฆ ๋น๋์ค!
26
+ run: yarn build
27
28
+ # - name: ๐ ๋ฐฐํฌ์ค!
29
+ # uses: peaceiris/actions-gh-pages@v3
30
+ # with:
31
+ # github_token: ${{ secrets.GH_ACTIONS_TOKEN }}
32
+ # publish_dir: ./dist
0 commit comments