Skip to content

add github link to top nav #135

add github link to top nav

add github link to top nav #135

Workflow file for this run

name: Build and Deploy
on:
push:
branches:
- master
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️
uses: actions/checkout@v3
with:
persist-credentials: false
- name: Cache deps
uses: actions/cache@v2
with:
path: |
**/node_modules
key: deps-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
deps-
- name: Install ⚙️
run: |
yarn install
- name: Build 🔨
env:
NODE_ENV: production
run: |
yarn build
- name: Deploy 🚀
uses: JamesIves/github-pages-deploy-action@4.0.0
with:
repository-name: anycable/anycable.github.io
branch: master
folder: dist
clean: true
token: ${{ secrets.ACCESS_TOKEN }}