-
Notifications
You must be signed in to change notification settings - Fork 3
66 lines (61 loc) · 1.89 KB
/
docker.yml
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
name: Docker
on:
release:
types: [published]
pull_request:
paths:
- docker/**
- .github/workflows/docker.yml
workflow_dispatch:
inputs:
tag_name:
description: "Tag of the docker image to push"
required: true
default: "vX.X.X"
prerelease:
description: "Pre-Release (do not push latest tag)"
type: boolean
jobs:
docker-build-push:
if: |
github.repository_owner == 'cupy' ||
github.event_name != 'release'
runs-on: ubuntu-22.04
strategy:
matrix:
include:
- context: "docker/python3"
base: "cupy/cupy"
- context: "docker/rocm"
base: "cupy/cupy-rocm"
env:
DOCKER_TAG_NAME: |
${{
(github.event_name == 'release' && github.event.release.tag_name) ||
(github.event_name == 'workflow_dispatch' && github.event.inputs.tag_name) ||
'pull-request-test'
}}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Login to DockerHub
if: github.event_name != 'pull_request'
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Docker Build & Push (version tag)
uses: docker/build-push-action@v4
with:
context: ${{ matrix.context }}
tags: ${{ matrix.base }}:${{ env.DOCKER_TAG_NAME }}
push: ${{ github.event_name != 'pull_request' }}
- name: Docker Build & Push (latest tag)
if: |
(github.event_name == 'release' && ! github.event.release.prerelease) ||
(github.event_name == 'workflow_dispatch' && ! github.event.inputs.prerelease)
uses: docker/build-push-action@v4
with:
context: ${{ matrix.context }}
tags: ${{ matrix.base }}:latest
push: ${{ github.event_name != 'pull_request' }}