-
Notifications
You must be signed in to change notification settings - Fork 1
65 lines (57 loc) · 1.91 KB
/
images.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
name: Build and Push Images
on:
workflow_call:
release:
types: [published]
jobs:
docker-hub:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
token: ${{ secrets.botGitHubToken }}
- name: Load .env file
uses: cardinalby/export-env-action@v2
with:
envFile: .env
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Login to DockerHub
uses: docker/login-action@v2
with:
username: dropletbot
password: ${{ secrets.botDockerHubPassword }}
- name: Build and push (latest)
if: github.ref == 'refs/heads/main'
uses: docker/build-push-action@v3
with:
platforms: linux/amd64,linux/arm64
context: .
push: true
build-args: |
SERVICE_NAME=mgmt-backend
tags: instill/mgmt-backend:latest
cache-from: type=registry,ref=instill/mgmt-backend:buildcache
cache-to: type=registry,ref=instill/mgmt-backend:buildcache,mode=max
- name: Set Versions
if: github.event_name == 'release'
uses: actions/github-script@v6
id: set_version
with:
script: |
const tag = '${{ github.ref_name }}'
const no_v_tag = tag.replace('v', '')
core.setOutput('tag', tag)
core.setOutput('no_v_tag', no_v_tag)
- name: Build and push (release)
if: github.event_name == 'release'
uses: docker/build-push-action@v3
with:
platforms: linux/amd64,linux/arm64
context: .
push: true
build-args: |
SERVICE_NAME=mgmt-backend
tags: instill/mgmt-backend:${{steps.set_version.outputs.no_v_tag}}
cache-from: type=registry,ref=instill/mgmt-backend:buildcache
cache-to: type=registry,ref=instill/mgmt-backend:buildcache,mode=max