Skip to content

Latest commit

 

History

History
38 lines (20 loc) · 1.01 KB

deploy.md

File metadata and controls

38 lines (20 loc) · 1.01 KB

Deploy

Build app

Run a local production-optimized build.

$ npm run build

Release

This will run checks and tests, increment the tag version and push the new tagged commit.

$ npm version minor

Deploy pipeline

This project will run checks and build steps on GitHub Actions on every commit or push on the master branch.

See the workflow config file.

See results on the Actions tab.

Note

A comment on the limitation of this template project

Add your deploy instructions here. Such as now to deploy to GH Pages, Netlify, Vercel, etc.

With the current flow nothing is persisted after a build, so this on a CI flow and not a CD flow.

If you want to deploy your React/Vue app to GitHub Pages, follow this page: GH Pages workflow.