add tooltip stuff

[deploy]
This commit is contained in:
2023-07-18 01:40:30 +02:00
parent 4eb1e8c049
commit b04ed7fe7f
24 changed files with 1161 additions and 5143 deletions

View File

@@ -2,44 +2,44 @@ name: Build
on:
push:
branches: [ "master" ]
branches: ["master"]
pull_request:
branches: [ "master" ]
branches: ["master"]
jobs:
build:
name: 🔨 Build
runs-on: ubuntu-latest
steps:
- name: 🚚 Checkout
uses: actions/checkout@v3
- name: 🐍 Use Python 3.x
uses: actions/setup-python@v3.1.4
with:
python-version: 3.x
cache: pip
- name: ⏬ Install Python dependencies
run: python -m venv venv
- run: ./venv/bin/pip install -r requirements.txt
- name: 🐉 Use Node.js 18.16.x
uses: actions/setup-node@v3
with:
node-version: 18.16.x
cache: 'npm'
- name: ⏬ Install Node dependencies
run: npm ci
- name: 🚚 Checkout
uses: actions/checkout@v3
- name: 🐍 Use Python 3.x
uses: actions/setup-python@v3.1.4
with:
python-version: 3.x
cache: pip
- name: ⏬ Install Python dependencies
run: python -m venv venv
- run: ./venv/bin/pip install -r requirements.txt
- name: 🔥 Optimize icon font
run: npm run minify-icons
- name: 🔨 Build site
run: npm run build
- name: 📦 Upload build artifacts
uses: actions/upload-artifact@v3.1.2
with:
name: build
path: build
- name: 🐉 Use Node.js 18.16.x
uses: actions/setup-node@v3
with:
node-version: 18.16.x
cache: "npm"
- name: ⏬ Install Node dependencies
run: npm ci
- name: 🔥 Optimize icon font
run: npm run minify-icons
- name: 🔨 Build site
run: npm run build
- name: 📦 Upload build artifacts
uses: actions/upload-artifact@v3.1.2
with:
name: build
path: build
deploy:
name: 🚀 Deploy
if: github.event_name == 'push' && contains(github.event.head_commit.message, '[deploy]')