地方エンジニアの学習日記

興味ある技術の雑なメモだったりを書いてくブログ。たまに日記とガジェット紹介。

2020-04-15から1日間の記事一覧

ciで使えるgitコマンド tips

ciで使えるgitコマンド # git diff オプション git diff [<options>] [<commit>] [--] [<path>…​] git diff [<options>] --cached [<commit>] [--] [<path>…​] git diff [<options>] <commit> <commit> [--] [<path>…​] git diff [<options>] <blob> <blob> git diff [<options>] --no-index [--] <path> <path> # git diff でファイル名のみ表示する…</path></path></options></blob></blob></options></path></commit></commit></options></path></commit></options></path></commit></options>

【GitHub Actions】Dockerを使うテンプレートyaml

ベース name: Push Docker image to ECR on: push env: # BuildKitを有効化 DOCKER_BUILDKIT: 1 IMAGE_NAME: sample IMAGE_TAG: test jobs: build: name: Build image runs-on: ubuntu-18.04 steps: - uses: actions/checkout@master - name: Login GitHub R…