Skip to content

Merge remote-tracking branch 'refs/remotes/origin/main' #2

Merge remote-tracking branch 'refs/remotes/origin/main'

Merge remote-tracking branch 'refs/remotes/origin/main' #2

Workflow file for this run

# This script deploys your website automatically
name: CI
# Only trigger this script when you push to the master branch
on:
push:
branches: [ main ]
# Specify the tasks to run when this script gets triggered
jobs:
build:
runs-on: ubuntu-latest
# Download our master branch
steps:
- uses: actions/checkout@v2
# Run our deployment command
- name: Deploying the static website to gh-pages
run: npm run deploy