-
-
Notifications
You must be signed in to change notification settings - Fork 40
78 lines (67 loc) · 2.63 KB
/
publish_docker_image.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
name: Publish Docker Image
# master ブランチに変更があったとき or タグが作成されたとき or 手動実行
on:
push:
branches:
- master
tags:
- '*'
workflow_dispatch:
env:
REGISTRY: ghcr.io
IMAGE_NAME: ${{ github.repository }}
# ジョブの定義
jobs:
build-and-push-image:
runs-on: ubuntu-latest
# 最新コミットがリリースコミットのときは、タグの push がトリガーのとき以外は実行しない
## タグが push された後でないと Releases からサードパーティーライブラリをダウンロードできず失敗する
if: (startsWith(github.ref, 'refs/tags/v')) || (contains(github.event.head_commit.message, 'Release:') == false)
permissions:
contents: read
packages: write
steps:
- name: Checkout Repository
uses: actions/checkout@v3
- name: Setup Docker Buildx
uses: docker/setup-buildx-action@v2
# タグの push がトリガーのときだけ、Release のサードパーティーライブラリが確実にアップロードされるまで1分ほど待つ
- name: Wait for Release to be Created
if: startsWith(github.ref, 'refs/tags/v')
run: |
sleep 60s
# GitHub Container Registry (ghcr.io) にログイン
- name: Login to the Container Registry
uses: docker/login-action@v2
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
# Docker イメージのタグ付け用のメタデータを抽出
- name: Extract Metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@v4
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
tags: |
type=raw,value=latest,enable={{is_default_branch}}
type=ref,event=tag
# Docker イメージをビルドして公開
- name: Build and Push Docker Image
uses: docker/build-push-action@v3
with:
context: .
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
cache-from: type=gha
cache-to: type=gha,mode=max
# おそらく使われることのない、Untagged なイメージをすべて削除する
# ref: https://github.com/vlaurin/action-ghcr-prune
- name: Prune Untagged Docker Images
uses: vlaurin/[email protected]
with:
token: ${{ secrets.DELETE_GHCR_IMAGES_TOKEN }}
container: konomitv
dry-run: false
prune-untagged: true