Merge remote-tracking branch 'refs/remotes/origin/main' #2
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
# 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 |