forked from StanfordVL/OmniGibson
-
Notifications
You must be signed in to change notification settings - Fork 0
70 lines (68 loc) · 1.88 KB
/
build-push-containers.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
67
68
69
70
name: build-push-containers
on:
release:
types: [published]
push:
branches:
- 'main'
- 'og-develop'
jobs:
docker:
runs-on: [self-hosted, linux, gpu]
steps:
-
name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
-
name: Login to NVCR
uses: docker/login-action@v2
with:
registry: nvcr.io
username: ${{ secrets.NVCR_USERNAME }}
password: ${{ secrets.NVCR_PASSWORD }}
-
name: Login to Docker Hub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKER_HUB_USERNAME }}
password: ${{ secrets.DOCKER_HUB_PASSWORD }}
-
name: Metadata for dev Image
id: meta-dev
uses: docker/metadata-action@v4
with:
images: |
stanfordvl/omnigibson-dev
tags: |
type=ref,event=branch
type=semver,pattern={{version}}
-
name: Metadata for prod Image
id: meta-prod
uses: docker/metadata-action@v4
with:
images: |
stanfordvl/omnigibson
tags: |
type=ref,event=branch
type=semver,pattern={{version}}
-
name: Build and push dev image
uses: docker/build-push-action@v4
with:
push: true
tags: ${{ steps.meta-dev.outputs.tags }}
labels: ${{ steps.meta-dev.outputs.labels }}
file: docker/dev.Dockerfile
cache-from: type=gha
cache-to: type=gha,mode=max
-
name: Build and push prod image
uses: docker/build-push-action@v4
with:
push: true
tags: ${{ steps.meta-prod.outputs.tags }}
labels: ${{ steps.meta-prod.outputs.labels }}
file: docker/prod.Dockerfile
cache-from: type=gha
cache-to: type=gha,mode=max