Skip to content

Latest commit

 

History

History
27 lines (19 loc) · 491 Bytes

README.md

File metadata and controls

27 lines (19 loc) · 491 Bytes

Deploy React app to gh-pages

This Action will automate the process of building and depolying react app to gh-pages.

Action

Add this action inside your Repository's Actions

name: React app deployment

on:
  push:
    branches: [ master ]
  pull_request:
    branches: [ master ]

jobs:
  build:

    runs-on: ubuntu-latest
    
    steps:
    - uses: actions/checkout@v2

    - name: Deploy react app to github pages
      uses: tanwanimohit/[email protected]