Rework this website to become of blog and a portfolio #14
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Push to branch | |
on: | |
push: | |
branches: | |
- develop | |
jobs: | |
push_backend: | |
name: Deploy to gh-pages | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- name: Set up NodeJS | |
uses: actions/[email protected] | |
with: | |
node-version: "14" | |
- name: Install and Build 🔧 | |
run: | | |
npm ci | |
npm run build | |
- name: Deploy 🚀 | |
uses: JamesIves/[email protected] | |
with: | |
branch: master | |
folder: build |