Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tanwanimohit/deploy-react-to-ghpages
This Action will automate the process of building and depolying react app to gh-pages.
https://github.com/tanwanimohit/deploy-react-to-ghpages
deployment depolying-react gh-pages
Last synced: 24 days ago
JSON representation
This Action will automate the process of building and depolying react app to gh-pages.
- Host: GitHub
- URL: https://github.com/tanwanimohit/deploy-react-to-ghpages
- Owner: tanwanimohit
- License: mit
- Created: 2020-08-20T04:50:29.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2023-04-02T09:01:00.000Z (almost 2 years ago)
- Last Synced: 2024-11-22T10:27:46.178Z (about 1 month ago)
- Topics: deployment, depolying-react, gh-pages
- Homepage: https://github.com/marketplace/actions/deploy-react-app-to-github-pages
- Size: 10.7 KB
- Stars: 24
- Watchers: 1
- Forks: 12
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
README
## 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 deploymenton:
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]
```