update homepage url #25
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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.1.0 | |
with: | |
branch: gh-pages | |
folder: build |