Skip to content

Build and Deploy

Build and Deploy #19

Workflow file for this run

name: Build and Deploy
env:
CI: false
GITHUB_USERNAME: ${{ github.repository_owner }}
REACT_APP_GITHUB_TOKEN: ${{ secrets.APP_DEPLOY_TOKEN }}
USE_GITHUB_DATA: "true"
on:
push:
branches:
- master
schedule:
- cron: "0 12 * * 1"
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️
uses: actions/checkout@v2
with:
persist-credentials: false
- name: Deploy 🚀
uses: JamesIves/github-pages-deploy-action@releases/v3
with:
GITHUB_TOKEN : ${{ secrets.APP_DEPLOY_TOKEN }} # This is provided by GitHub.
BRANCH: gh-pages # The branch the action should deploy to.
FOLDER: build # The folder the action should deploy.