Skip to content

Update docs (typo) #108

Update docs (typo)

Update docs (typo) #108

Workflow file for this run

name: Deploy Dothttp docs
# az ad sp create-for-rbac --name "dothttpdocs" --role contributor --scopes /subscriptions/{subscriptionid}/resourceGroups/dothttpdocs --sdk-auth
on:
push:
branches: [ master ]
jobs:
gh-release:
if: github.event_name != 'pull_request'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/setup-node@v1
with:
node-version: '12.x'
- uses: webfactory/[email protected]
with:
ssh-private-key: ${{ secrets.GH_PAGES_DEPLOY }}
- name: Release to GitHub Pages
env:
USE_SSH: true
GIT_USER: git
run: |
git config --global user.email "[email protected]"
git config --global user.name "gh-actions"
if [ -e yarn.lock ]; then
yarn install --frozen-lockfile
elif [ -e package-lock.json ]; then
npm ci
else
npm i
fi
npm run deploy