-
Notifications
You must be signed in to change notification settings - Fork 94
59 lines (53 loc) · 1.59 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
name: Docker
on:
release:
types: [published]
pull_request:
paths:
- docker/**
- .github/workflows/docker.yml
jobs:
docker-build-push:
if: |
github.repository_owner == 'brainpy' ||
github.event_name != 'release'
runs-on: ubuntu-22.04
strategy:
matrix:
include:
- context: "docker/"
base: "brainpy/brainpy"
env:
TARGET_PLATFORMS: linux/amd64
REGISTRY: ghcr.io
IMAGE_NAME: ${{ github.repository }}
DOCKER_TAG_NAME: |
${{
(github.event_name == 'release' && github.event.release.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@v3
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' }}
platforms: ${{ env.TARGET_PLATFORMS }}
- name: Docker Build & Push (latest tag)
if: |
(github.event_name == 'release' && ! github.event.release.prerelease)
uses: docker/build-push-action@v4
with:
context: ${{ matrix.context }}
tags: ${{ matrix.base }}:latest
push: ${{ github.event_name != 'pull_request' }}
platforms: ${{ env.TARGET_PLATFORMS }}