-
Notifications
You must be signed in to change notification settings - Fork 2
executable file
·65 lines (56 loc) · 2.26 KB
/
update_r4userembedding.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
name: Publish to Dockerhub ( userembedding )
on:
workflow_dispatch:
inputs:
tags:
description: 'Release Tags'
jobs:
publish_dockerhub_amd64:
runs-on: ubuntu-latest
steps:
- name: Check out the repo
uses: actions/checkout@v3
- name: Log in to Docker Hub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_PASS }}
- name: Build r4userembedding and push Docker image
uses: docker/build-push-action@v3
with:
push: true
tags: beclab/r4userembedding:${{ github.event.inputs.tags }}-amd64
file: Dockerfile.r4userembedding
platforms: linux/amd64
publish_dockerhub_arm64:
runs-on: self-hosted
steps:
- name: Check out the repo
uses: actions/checkout@v3
- name: Log in to Docker Hub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_PASS }}
- name: Build r4userembedding and push Docker image
uses: docker/build-push-action@v3
with:
push: true
tags: beclab/r4userembedding:${{ github.event.inputs.tags }}-arm64
file: Dockerfile.r4userembedding
platforms: linux/arm64
publish_manifest:
needs:
- publish_dockerhub_amd64
- publish_dockerhub_arm64
runs-on: ubuntu-latest
steps:
- name: Log in to Docker Hub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_PASS }}
- name: Push manifest
run: |
docker manifest create beclab/r4userembedding:${{ github.event.inputs.tags }} --amend beclab/r4userembedding:${{ github.event.inputs.tags }}-amd64 --amend beclab/r4userembedding:${{ github.event.inputs.tags }}-arm64
docker manifest push beclab/r4userembedding:${{ github.event.inputs.tags }}