動かざることバグの如し

近づきたいよ 君の理想に

github

MermaidでER図を書くテンプレート

MermaidでER図を書くテンプレート erDiagram T1 ||--|{ T2: "1 対 多(1以上)" T1 ||--o{ T3: "1 対 多(0以上)" T1 ||--|| T4: "1 対 1" T1 ||--o| T5: "1 対 0か1" T1 { id BIGINT PK "ID" title VARCHAR(255) "タイトル" } 公式サイトが1番わかりやすいっ…

Github Actionsで配列に含まれているかで分岐させる方法

Github Actionsで配列を条件式渡して評価したい thr3a/docker-build-stationで毎日Dockerイメージをビルドしているが、 if: matrix.target == 'cuda11.8-torch' || matrix.target == 'cuda12.1-torch' || matrix.target == 'alma-7b-server' || matrix.targe…

Github Actionsで容量不足問題

Github Actionsで容量不足問題 thr3a/faster-whisper-webuiでいつものように buildx failed with: ERROR: failed to solve: failed to create temp dir: mkdir /tmp/containerd-mount3151666229: no space left on device 原因 ディスク容量が足りない 解決…

GitHub Actionsでgit差分がある時のみコミットする方法

環境 actions/checkout@v3 やりたいこと GitHub ActionsでCI実行後にgit差分があればコミット&pushする。 なければそのまま終了する どういうとき使うのかって言うと自動定期アップデートとか コード - name: Commit updated files run: | git config core.f…

はてなブログのsitemap.xmlをCIで自動送信するようにした

はてなブログのsitemap.xmlひどすぎ問題 これは昔から続いている問題なんだが、はてなブログだとインデックスが上手くいかないケースが有る。 先人の人たちが腐るほどに記事にしてくれている karupoimou.hatenablog.com chateau-vulpes.com www.imaichido.co…

GitHub Docker Repositoryにpushするとbuildx call failed with: failed to solve: rpc error

タイトルのママ 以下のときにこまった thr3a.hatenablog.com 解決策 GitHubにログインした状態で右上の自分のアイコンをクリック Feature Previewクリック 「Improved container support」をEnabledにする 参考リンク buildx call failed with: failed to so…

GitHub ActionでGithub Container Registryにpushする

環境 2020-12-31現在 成果物 thr3a/imagemagick-docker docker pull ghcr.io/thr3a/imagick YAML .github/workflows/action.ymlを用意 name: Build and Publish Docker on: push: branches: - master jobs: build_and_push: runs-on: ubuntu-20.04 env: IMAG…