Skip to content

Build and Deploy

Build and Deploy #64

Workflow file for this run

name: Build and Deploy
env:
CI: false
GITHUB_USERNAME: ${{ github.repository_owner }}
REACT_APP_GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # This is automatically set by Github Actions
USE_GITHUB_DATA: "true"
MEDIUM_USERNAME: "AmrElsayyad" # Change this to your medium username
on:
workflow_dispatch:
push:
branches:
- my-portfolio
schedule:
- cron: "0 0 * * *" # see https://docs.github.com/en/actions/reference/events-that-trigger-workflows#scheduled-events
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️
uses: actions/checkout@v4
with:
persist-credentials: false
- name: Setup Node.js 🔧
uses: actions/setup-node@v4
- name: Install and Build 🔧 # Build the Project
run: |
npm install
npm run build
- name: Deploy 🚀
uses: JamesIves/github-pages-deploy-action@v4
with:
token: ${{ secrets.GITHUB_TOKEN }}
branch: gh-pages
folder: build