Merge pull request #51 from GiganticMinecraft/renovate/mikefarah-yq-4.x #17
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build and publish seichiassist-runner docker image | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- 'seichiassist-runner-v2/**' | |
- '.github/workflows/publish-seichiassist-runner-v2.yml' | |
jobs: | |
build-and-push: | |
runs-on: ubuntu-latest | |
env: | |
image_name: seichiassist-runner-v2 | |
# 参考: https://qiita.com/kawakawaryuryu/items/b0291c1bc1141a535263 | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4 | |
with: | |
submodules: recursive | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- id: prepare_image_id | |
name: Prepare image id's components | |
run: | | |
lowercase_id=ghcr.io/${{ github.repository_owner }}/${{ env.image_name }} | |
echo "::set-output name=lowercase_id::$(echo $lowercase_id | tr '[A-Z]' '[a-z]')" | |
echo "::set-output name=short-ref::$(git rev-parse --short "$GITHUB_SHA")" | |
- name: Login to GitHub Container Registry | |
uses: docker/login-action@v3 | |
with: | |
registry: ghcr.io | |
username: ${{ github.repository_owner }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Build and push | |
uses: docker/build-push-action@v5 | |
with: | |
context: ./seichiassist-runner-v2 | |
builder: ${{ steps.buildx.outputs.name }} | |
push: true | |
tags: | | |
${{ steps.prepare_image_id.outputs.lowercase_id }}:latest | |
${{ steps.prepare_image_id.outputs.lowercase_id }}:${{ steps.prepare_image_id.outputs.short-ref }} | |
cache-from: type=gha | |
# すべてのビルドステージのすべてのレイヤーをキャッシュして欲しいのでmode=max | |
cache-to: type=gha,mode=max |