Skip to content

blog redirects

blog redirects #130

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/[email protected]
with:
repository-name: anycable/anycable.github.io
branch: master
folder: dist
clean: true
token: ${{ secrets.ACCESS_TOKEN }}