-
Notifications
You must be signed in to change notification settings - Fork 0
42 lines (32 loc) · 989 Bytes
/
deploy.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
name: CI-CD for React app
on:
push:
branches: [master]
workflow_dispatch:
permissions:
contents: write
jobs:
build_and_deploy:
runs-on: ubuntu-latest
env:
REACT_APP_BTN_TEXT: ${{ vars.REACT_APP_BTN_TEXT }}
steps:
- name: Read a variable
run: echo "My REACT_APP_BTN_TEXT value is ${{ vars.REACT_APP_BTN_TEXT }}"
- name: Read an env variable
run: echo "My REACT_APP_BTN_TEXT value is ${{ env.REACT_APP_BTN_TEXT }} (also accessible as $REACT_APP_BTN_TEXT)"
- name: Checkout repository
uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: 18
- name: Install dependencies
run: npm install
- name: Build Project
run: npm run build
- name: Deploy to Github Pages
uses: JamesIves/github-pages-deploy-action@4.6.8
with:
branch: gh-pages
folder: build