- Notifications
You must be signed in to change notification settings - Fork1
Use meta tag for google verification instead#30
This file contains hidden or 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:Build and Deploy | |
on: | |
push: | |
branches: | |
-master | |
jobs: | |
build-and-deploy: | |
runs-on:ubuntu-latest | |
steps: | |
-name:Checkout 🛎️ | |
uses:actions/checkout@v2.3.1 | |
with: | |
persist-credentials:false | |
-name:Install and Build 🔧 | |
run:| | |
npm install | |
npm run build | |
-name:Deploy 🚀 | |
uses:JamesIves/github-pages-deploy-action@3.6.2 | |
with: | |
GITHUB_TOKEN:${{ secrets.GITHUB_TOKEN }} | |
BRANCH:gh-pages | |
FOLDER:_site |