新增代码文件支持行号显示

This commit is contained in:
jyuesong
2022-06-15 11:05:49 +08:00
parent 4e3f8a0df9
commit 2005083d2e
117 changed files with 4625 additions and 136 deletions

View File

@@ -0,0 +1,20 @@
#!/usr/bin/env sh
# package.json "deploy": "yarn build; push-dir --dir=dist --branch=gh-pages --cleanup"
# abort on errors
set -e
# build
flutter build web --release --no-sound-null-safety
# navigate into the build output directory
cd build/web
# Commit repo
git init
git add -A
git commit -m 'deploy'
git push -f git@github.com:BertrandBev/code_field.git master:gh-pages
# Nav back
cd -