[{"content":"github actions for hugo this hugo setup action can install hugo to a virtual machine of github actions. hugo extended version, hugo modules, linux (ubuntu), macos, and windows are supported.\nfrom v2, this hugo setup action has migrated to a javascript (typescript) action. we no longer build or pull a hugo docker image. thanks to this change, we can complete this action in less than a few seconds. (a docker base action was taking about 1 min or more execution time to build and pull a docker image.)\nos (runs-on) ubuntu-latest, ubuntu-20.04, ubuntu-22.04 macos-latest windows-2019 support ✅️ ✅️ ✅️ hugo type hugo extended hugo modules latest hugo support ✅️ ✅️ ✅️ table of contents getting started ⭐️ create your workflow options ⭐️ use hugo extended ⭐️ use the latest version of hugo tips ⭐️ caching hugo modules ⭐️ read hugo version from file ⭐️ workflow for autoprefixer and postcss-cli ⭐️ workflow for asciidoctor ⭐️ non-ascii filename changelog license about maintainer maintainer notes getting started ⭐️ create your workflow an example workflow .github/workflows/gh-pages.yml with github actions for github pages. for the first deployment, we have to do this operation: first deployment with github_token - peaceiris/actions-gh-pages\nname: github pages on: push: branches: - main # set a branch to deploy pull_request: jobs: deploy: runs-on: ubuntu-22.04 concurrency: group: ${{ github.workflow }}-${{ github.ref }} steps: - uses: actions/checkout@v3 with: submodules: true # fetch hugo themes (true or recursive) fetch-depth: 0 # fetch all history for .gitinfo and .lastmod - name: setup hugo uses: peaceiris/actions-hugo@v2 with: hugo-version: \u0026#39;0.91.2\u0026#39; # extended: true - name: build run: hugo --minify - name: deploy uses: peaceiris/actions-gh-pages@v3 if: ${{ github.ref == \u0026#39;refs/heads/main\u0026#39; }} with: github_token: ${{ secrets.github_token }} publish_dir: ./public back to toc ☝️ options ⭐️ use hugo extended set extended: true to use a hugo extended version.\n- name: setup hugo uses: peaceiris/actions-hugo@v2 with: hugo-version: \u0026#39;0.91.2\u0026#39; extended: true ⭐️ use the latest version of hugo set hugo-version: 'latest' to use the latest version of hugo.\n- name: setup hugo uses: peaceiris/actions-hugo@v2 with: hugo-version: \u0026#39;latest\u0026#39; this action fetches the latest version of hugo by hugo | homebrew formulae\nback to toc ☝️ tips ⭐️ caching hugo modules insert a cache step before site-building as follows. note that the cache dir location of hugo on a linux-based operating system is /tmp/hugo_cache. on macos, ${tmpdir}/hugo_cache has the location.\n- uses: actions/cache@v2 with: path: /tmp/hugo_cache key: ${{ runner.os }}-hugomod-${{ hashfiles(\u0026#39;**/go.sum\u0026#39;) }} restore-keys: | ${{ runner.os }}-hugomod- - name: build run: hugo --minify back to toc ☝️ ⭐️ read hugo version from file how to sync a hugo version between a docker compose and a github actions workflow via .env file.\nwrite a hugo_version to the .env file like the following and push it to a remote branch.\nhugo_version=0.91.2 next, add a step to read a hugo version from the .env file.\n- name: read .env id: hugo-version run: | . ./.env echo \u0026#34;::set-output name=hugo_version::${hugo_version}\u0026#34; - name: setup hugo uses: peaceiris/actions-hugo@v2 with: hugo-version: \u0026#39;${{ steps.hugo-version.outputs.hugo_version }}\u0026#39; extended: true here is a docker-compose.yml example.\nversion: \u0026#39;3\u0026#39; services: hugo: container_name: hugo image: \u0026#34;peaceiris/hugo:v${hugo_version}\u0026#34; # image: peaceiris/hugo:v${hugo_version}-mod # hugo modules # image: peaceiris/hugo:v${hugo_version}-full # hugo modules and node.js ports: - 1313:1313 volumes: - ${pwd}:/src command: - server - --bind=0.0.0.0 - --builddrafts the alpine base hugo docker image is provided on the following repository.\npeaceiris/hugo-extended-docker: hugo alpine base docker image (hugo extended and hugo modules)\nback to toc ☝️ ⭐️ workflow for autoprefixer and postcss-cli here is an example workflow for the google/docsy hugo theme. this theme needs autoprefixer and postcss-cli to build a project. the following workflow is tested with google/docsy-example.\na workflow for the hugo babel pipeline is also the same as follows.\nname: github pages on: push: branches: - master # set a branch to deploy pull_request: jobs: deploy: runs-on: ubuntu-22.04 concurrency: group: ${{ github.workflow }}-${{ github.ref }} steps: - uses: actions/checkout@v3 with: submodules: recursive # fetch the docsy theme fetch-depth: 0 # fetch all history for .gitinfo and .lastmod - name: setup hugo uses: peaceiris/actions-hugo@v2 with: hugo-version: \u0026#39;0.91.2\u0026#39; extended: true - name: setup node uses: actions/setup-node@v3 with: node-version: \u0026#39;16\u0026#39; cache: \u0026#39;npm\u0026#39; # the action defaults to search for the dependency file (package-lock.json, # npm-shrinkwrap.json or yarn.lock) in the repository root, and uses its # hash as a part of the cache key. # https://github.com/actions/setup-node/blob/main/docs/advanced-usage.md#caching-packages-data cache-dependency-path: \u0026#39;**/package-lock.json\u0026#39; - run: npm ci - run: hugo --minify - name: deploy uses: peaceiris/actions-gh-pages@v3 if: ${{ github.ref == \u0026#39;refs/heads/master\u0026#39; }} with: github_token: ${{ secrets.github_token }} back to toc ☝️ ⭐️ workflow for asciidoctor here is an example workflow for a hugo project using asciidoctor.\nname: github pages on: push: branches: - main # set a branch to deploy pull_request: jobs: deploy: runs-on: ubuntu-22.04 concurrency: group: ${{ github.workflow }}-${{ github.ref }} steps: - uses: actions/checkout@v3 with: submodules: true # fetch hugo themes (true or recursive) fetch-depth: 0 # fetch all history for .gitinfo and .lastmod - name: setup hugo uses: peaceiris/actions-hugo@v2 with: hugo-version: \u0026#39;0.91.2\u0026#39; extended: true - name: setup ruby uses: ruby/setup-ruby@v1 with: ruby-version: 2.7 - run: gem install asciidoctor - name: run hugo run: | alias asciidoctor=\u0026#34;asciidoctor --attribute=experimental=true --attribute=icons=font\u0026#34; hugo --minify - name: deploy uses: peaceiris/actions-gh-pages@v3 if: ${{ github.ref == \u0026#39;refs/heads/main\u0026#39; }} with: github_token: ${{ secrets.github_token }} back to toc ☝️ ⭐️ non-ascii filename cf. gitinfo fails on unicode filename · issue #3071 · gohugoio/hugo\nname: github pages on: push: branches: - main jobs: deploy: runs-on: ubuntu-22.04 concurrency: group: ${{ github.workflow }}-${{ github.ref }} steps: - uses: actions/checkout@v3 with: fetch-depth: 0 - name: disable quotepath run: git config core.quotepath false - name: setup hugo uses: peaceiris/actions-hugo@v2 with: hugo-version: \u0026#39;0.91.2\u0026#39; back to toc ☝️ changelog changelog.md license mit license - peaceiris/actions-hugo about maintainer peaceiris homepage github action hero: shohei ueda - the github blog maintainer notes run npm test on a docker container.\n# on container make build make all # release script on host ./release.sh back to toc ☝️ ","date":"2022-08-29","permalink":"/posts/2023/001/","summary":"GitHub Actions for Hugo This Hugo Setup Action can install Hugo to a virtual machine of GitHub Actions. Hugo extended version, Hugo Modules, Linux (Ubuntu), macOS, and Windows are supported. From v2, this Hugo Setup Action has migrated to a JavaScript (TypeScript) action. We no longer build or pull a Hugo docker image. Thanks to this change, we can complete this action in less than a few seconds. (A docker base action was taking about 1 min or more execution","title":"hugo git actions"},{"content":"live2d demo\nlive2d 看板娘插件 (https://www.fghrsh.net/post/123.html) 的前端 html 源码\n特性 基于 api 加载模型,支持 定制 提示语 增加 参数设置 一键定制看板娘,易用性++ 增加 看板娘样式设置,可直接设置宽高度等 支持多种一言接口,基于 jquery ui 实现拖拽 使用 目录结构 │ demo1-default.html // 常规引用 demo │ demo2-autoload.html // autoload.js demo │ demo3-waifu-tips.html // 内置 waifu-tips demo │ └─assets autoload.js // 自动异步加载 flat-ui-icons-regular.eot // flat ui 字体 flat-ui-icons-regular.svg // flat ui 字体 flat-ui-icons-regular.ttf // flat ui 字体 flat-ui-icons-regular.woff // flat ui 字体 live2d.js // live2d 核心 waifu-tips.js // live2d 看板娘 扩展 waifu-tips.json // live2d 看板娘 提示语 waifu.css // live2d 看板娘 样式表 食用方法 依赖类库\njquery (waifu-tips.js) jquery ui (仅实现 拖拽效果 需要) 常规方式引入\n在 \u0026lt;/head\u0026gt; 前引入 waifu.css 样式表 在 \u0026lt;/body\u0026gt; 前引入 waifu-tips.js 和 live2d.js 在 \u0026lt;/body\u0026gt; 前插入 初始化 js,可在 初始化前 设置参数 \u0026lt;html\u0026gt; \u0026lt;head\u0026gt; · · · · · · \u0026lt;link rel=\u0026#34;stylesheet\u0026#34; type=\u0026#34;text/css\u0026#34; href=\u0026#34;https://www.example.com/path/to/waifu.css\u0026#34;/\u0026gt; \u0026lt;/head\u0026gt; \u0026lt;body\u0026gt; · · · · · · \u0026lt;div class=\u0026#34;waifu\u0026#34;\u0026gt; \u0026lt;div class=\u0026#34;waifu-tips\u0026#34;\u0026gt;\u0026lt;/div\u0026gt; \u0026lt;canvas id=\u0026#34;live2d\u0026#34; class=\u0026#34;live2d\u0026#34;\u0026gt;\u0026lt;/canvas\u0026gt; \u0026lt;div class=\u0026#34;waifu-tool\u0026#34;\u0026gt; \u0026lt;span class=\u0026#34;fui-home\u0026#34;\u0026gt;\u0026lt;/span\u0026gt; \u0026lt;span class=\u0026#34;fui-chat\u0026#34;\u0026gt;\u0026lt;/span\u0026gt; \u0026lt;span class=\u0026#34;fui-eye\u0026#34;\u0026gt;\u0026lt;/span\u0026gt; \u0026lt;span class=\u0026#34;fui-user\u0026#34;\u0026gt;\u0026lt;/span\u0026gt; \u0026lt;span class=\u0026#34;fui-photo\u0026#34;\u0026gt;\u0026lt;/span\u0026gt; \u0026lt;span class=\u0026#34;fui-info-circle\u0026#34;\u0026gt;\u0026lt;/span\u0026gt; \u0026lt;span class=\u0026#34;fui-cross\u0026#34;\u0026gt;\u0026lt;/span\u0026gt; \u0026lt;/div\u0026gt; \u0026lt;/div\u0026gt; \u0026lt;script src=\u0026#34;path/to/waifu-tips.js\u0026#34;\u0026gt;\u0026lt;/script\u0026gt; \u0026lt;script src=\u0026#34;path/to/live2d.js\u0026#34;\u0026gt;\u0026lt;/script\u0026gt; \u0026lt;script type=\u0026#34;text/javascript\u0026#34;\u0026gt; live2d_settings[\u0026#39;modelid\u0026#39;] = 1; live2d_settings[\u0026#39;modeltexturesid\u0026#39;] = 87; initmodel(\u0026#34;https://www.example.com/path/to/waifu-tips.json\u0026#34;) \u0026lt;/script\u0026gt; \u0026lt;/body\u0026gt; \u0026lt;/html\u0026gt; autoload.js 引入 在 \u0026lt;/body\u0026gt; 前引入 autoload.js 修改 autoload.js 文件路径,可在 初始化前 设置参数 · · · · · · \u0026lt;script src=\u0026#34;path/to/autoload.js\u0026#34;\u0026gt;\u0026lt;/script\u0026gt; \u0026lt;/body\u0026gt; \u0026lt;/html\u0026gt; try { · · · · · · live2d_settings[\u0026#39;modelid\u0026#39;] = 1; live2d_settings[\u0026#39;modeltexturesid\u0026#39;] = 87; initmodel(\u0026#39;https://www.example.com/path/to/waifu-tips.json\u0026#39;); } catch(err) { console.log(\u0026#39;[error] jquery is not defined.\u0026#39;) } 定制属于你的看板娘 修改 waifu-tips.js 顶部的设置参数 (或初始化前设置 修改 waifu-tips.json,定制看板娘提示语,打造专属看板娘 设置参数 tips: waifu-tips.js 已自带默认参数,如无特殊要求可跳过\n后端接口\nlive2d_settings['modelapi']\n看板娘 api 地址,默认值 '//live2d.fghrsh.net/api/'\nlive2d_settings['tipsmessage']\n提示语读取路径,默认值 'waifu-tips.json' (一般在 initmodel 时指定)\nlive2d_settings['hitokotoapi']\n一言 api 接口,可选 'lwl12.com','hitokoto.cn','jinrishici.com' (古诗词)\n默认模型\nlive2d_settings['modelid']\n默认模型(分组) id,可在 demo 页 [f12] 呼出 控制台(console) 找到\nlive2d_settings['modeltexturesid']\n默认材质(模型) id,可在 demo 页 [f12] 呼出 控制台(console) 找到\n工具栏设置\nlive2d_settings['showtoolmenu'], 显示工具栏, true | false live2d_settings['cancloselive2d'], 关闭看板娘 按钮,true | false live2d_settings['canswitchmodel'], 切换模型 按钮, true | false live2d_settings['canswitchtextures'], 切换材质 按钮, true | false live2d_settings['canswitchhitokoto'], 切换一言 按钮, true | false live2d_settings['cantakescreenshot'], 看板娘截图 按钮,true | false live2d_settings['canturntohomepage'], 返回首页 按钮, true | false live2d_settings['canturntoaboutpage'],跳转关于页 按钮,true | false 模型切换模式\nlive2d_settings['modelstorage'],记录 id (刷新后恢复),true | false live2d_settings['modelrandmode'],模型切换,可选 'rand' (随机) | 'switch' (顺序) live2d_settings['modeltexturesrandmode'],材质切换,可选 'rand' | 'switch' 提示消息选项\nlive2d_settings['showhitokoto'],空闲时一言,true | false live2d_settings['showf12status'],控制台显示加载状态,true | false live2d_settings['showf12message'],提示消息输出到控制台,true | false live2d_settings['showf12openmsg'],控制台被打开触发提醒,true | false live2d_settings['showcopymessage'],内容被复制触发提醒,true | false live2d_settings['showwelcomemessage'],进入面页时显示欢迎语,true | false 看板娘样式设置\nlive2d_settings['waifusize'],看板娘大小,例如 '280x250','600x535'\nlive2d_settings['waifutipssize'],提示框大小,例如 '250x70','570x150'\nlive2d_settings['waifufontsize'],提示框字体,例如 '12px','30px'\nlive2d_settings['waifutoolfont'],工具栏字体,例如 '14px','36px'\nlive2d_settings['waifutoolline'],工具栏行高,例如 '20px','36px'\nlive2d_settings['waifutooltop'],工具栏顶部边距,例如 '0px','-60px'\nlive2d_settings['waifuminwidth']\n面页小于 指定宽度 隐藏看板娘,例如 'disable' (停用),'768px'\nlive2d_settings['waifuedgeside']\n看板娘贴边方向,例如 'left:0' (靠左 0px),'right:30' (靠右 30px)\nlive2d_settings['waifudraggable']\n拖拽样式,可选 'disable' (禁用),'axis-x' (只能水平拖拽),'unlimited' (自由拖拽)\nlive2d_settings['waifudraggablerevert'],松开鼠标还原拖拽位置,true | false\n其他杂项设置\nlive2d_settings['l2dversion'],当前版本 (无需修改) live2d_settings['l2dverdate'],更新日期 (无需修改) live2d_settings['homepageurl'],首页地址,可选 'auto' (自动),'{url 网址}' live2d_settings['aboutpageurl'],关于页地址,'{url 网址}' live2d_settings['screenshotcapturename'],看板娘截图文件名,例如 'live2d.png' 定制提示语 tips: waifu-tips.json 已自带默认提示语,如无特殊要求可跳过\n\u0026quot;waifu\u0026quot; 系统提示 \u0026quot;console_open_msg\u0026quot; 控制台被打开提醒(支持多句随机) \u0026quot;copy_message\u0026quot; 内容被复制触发提醒(支持多句随机) \u0026quot;screenshot_message\u0026quot; 看板娘截图提示语(支持多句随机) \u0026quot;hidden_message\u0026quot; 看板娘隐藏提示语(支持多句随机) \u0026quot;load_rand_textures\u0026quot; 随机材质提示语(暂不支持多句) \u0026quot;hour_tips\u0026quot; 时间段欢迎语(支持多句随机) \u0026quot;referrer_message\u0026quot; 请求来源欢迎语(不支持多句) \u0026quot;referrer_hostname\u0026quot; 请求来源自定义名称(根据 host,支持多句随机) \u0026quot;model_message\u0026quot; 模型切换欢迎语(根据模型 id,支持多句随机) \u0026quot;hitokoto_api_message\u0026quot;,一言 api 输出模板(不支持多句随机) \u0026quot;mouseover\u0026quot; 鼠标触发提示(根据 css 选择器,支持多句随机) \u0026quot;click\u0026quot; 鼠标点击触发提示(根据 css 选择器,支持多句随机) \u0026quot;seasons\u0026quot; 节日提示(日期段,支持多句随机) 版权声明 ( ˃ ˄ ˂̥̥ ) 都看到这了,点个 star 吧 ~\nflat ui free\nlive2d_src / ©journey-ad / gpl v2.0\nwaifu-tips.js / ©journey-ad / cc by-nc-sa 4.0\nopen sourced under the gpl v2.0 license.\naaaaaa\n","date":"2022-08-29","permalink":"/posts/2022/%E7%BA%A2%E7%BA%BF/","summary":"Live2D demo Live2D 看板娘插件 (https://www.fghrsh.net/post/123.html) 的前端 HTML 源码 特性 基于 API 加载模型,支持 定制 提示语 增加 参数设置 一键定制看板娘,易用性++ 增加 看板娘样式设置,可直接设置宽高度等 支持多种一言接口,基","title":"看板娘"},]