Skip to content

Instantly share code, notes, and snippets.

View tempous's full-sized avatar
🎯
Focusing

tempous

🎯
Focusing
View GitHub Profile
@tempous
tempous / blazorwasmdeploy.yml
Last active February 15, 2023 15:31
Build and Deploy Blazor WASM to GitHub Pages
name: Build and Deploy Blazor WASM to GitHub Pages
on:
push:
branches: [main]
jobs:
deploy-to-github-pages:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
@tempous
tempous / settings.json
Last active March 7, 2023 13:49
VS Code settings
{
"editor.fontLigatures": true,
"editor.fontFamily": "Cascadia Mono",
"editor.formatOnSave": true,
"editor.formatOnPaste": true,
"editor.linkedEditing": true,
"editor.mouseWheelZoom": true,
"editor.smoothScrolling": true,
"editor.minimap.enabled": false,
"editor.cursorBlinking": "expand",