Skip to content

feat: add favicon

feat: add favicon #1

Workflow file for this run

name: Deploy Tensor to falconlang.github.io
on:
push:
branches: [main]
paths:
- tensor/**
workflow_dispatch:
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
cache: npm
cache-dependency-path: tensor/package-lock.json
- name: Install dependencies
working-directory: tensor
run: npm ci
- name: Build
working-directory: tensor
run: npm run build
- name: Deploy to falconlang.github.io
uses: peaceiris/actions-gh-pages@v4
with:
personal_token: ${{ secrets.PAGES_DEPLOY_TOKEN }}
external_repository: falconlang/falconlang.github.io
publish_branch: main
publish_dir: tensor/dist