Skip to content

Merge branch 'master' of github.com:jeremylee34/jeremylee34.github.io #23

Merge branch 'master' of github.com:jeremylee34/jeremylee34.github.io

Merge branch 'master' of github.com:jeremylee34/jeremylee34.github.io #23

Workflow file for this run

name: Build and Deploy React App to GitHub Pages
on:
push:
branches: [ master ]
jobs:
build-push-gcr:
name: Build and Deploy
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Build
run: npm ci
- name: Deploy
run: |
git config --global user.name 'jeremylee34'
git config --global user.email '[email protected]'
git remote set-url origin https://x-access-token:${{ secrets.GITHUB_TOKEN }}@github.com/${{ github.repository }}
npm run deploy