File tree Expand file tree Collapse file tree 2 files changed +19
-4
lines changed Expand file tree Collapse file tree 2 files changed +19
-4
lines changed Original file line number Diff line number Diff line change 49
49
username : ${{ github.actor }}
50
50
password : ${{ secrets.GITHUB_TOKEN }}
51
51
52
+ - name : Build autoheal
53
+ uses : docker/build-push-action@v2
54
+ if : ${{ env.NAME == 'autoheal' || env.NAME == '' }}
55
+ with :
56
+ builder : ${{ steps.buildx.outputs.name }}
57
+ context : .
58
+ file : ./autoheal/Dockerfile
59
+ platforms : linux/amd64,linux/arm64
60
+ push : true
61
+ tags : ghcr.io/taitounited/autoheal:${{ env.VERSION }}
62
+
52
63
- name : Build cypress
53
64
uses : docker/build-push-action@v2
54
65
if : ${{ env.NAME == 'cypress' || env.NAME == '' }}
@@ -71,13 +82,13 @@ jobs:
71
82
push : true
72
83
tags : ghcr.io/taitounited/minio:${{ env.VERSION }}
73
84
74
- - name : Build autoheal
85
+ - name : Build runner
75
86
uses : docker/build-push-action@v2
76
- if : ${{ env.NAME == 'autoheal ' || env.NAME == '' }}
87
+ if : ${{ env.NAME == 'runner ' || env.NAME == '' }}
77
88
with :
78
89
builder : ${{ steps.buildx.outputs.name }}
79
90
context : .
80
- file : ./autoheal /Dockerfile
91
+ file : ./runner /Dockerfile
81
92
platforms : linux/amd64,linux/arm64
82
93
push : true
83
- tags : ghcr.io/taitounited/autoheal :${{ env.VERSION }}
94
+ tags : ghcr.io/taitounited/runner :${{ env.VERSION }}
Original file line number Diff line number Diff line change
1
+ FROM ghcr.io/actions/actions-runner:latest
2
+
3
+ # Pull taito-cli:ci-gcp-dev on start
4
+ RUN sed -i '/#!\/ bin\/ bash/a docker pull ghcr.io/taitounited/taito-cli:ci-gcp-dev' /home/runner/run.sh
You can’t perform that action at this time.
0 commit comments