Skip to content

Instantly share code, notes, and snippets.

@Valexr
Last active July 11, 2022 14:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Valexr/fb70269303236f8fba12c09057f00aff to your computer and use it in GitHub Desktop.
Save Valexr/fb70269303236f8fba12c09057f00aff to your computer and use it in GitHub Desktop.
deploy-to-gh-pages.yml
name: Build and Deploy
on: [push]
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️
uses: actions/checkout@v3.0.2
- name: Install and Build 🔧 # This example project is built using npm and outputs the result to the 'build' folder. Replace with the commands required to build your project, or remove this step entirely if your site is pre-built.
run: |
npm install
npm run build
- name: Deploy 🚀
uses: JamesIves/github-pages-deploy-action@4.3.4
with:
branch: gh-pages # The branch the action should deploy to.
folder: build # The folder the action should deploy.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment