Skip to content

Commit 32d13f3

Browse files
authored
fix: Docker build workflow (#40)
* run on tag pushes; fix secrets in matrix
1 parent 49acf1e commit 32d13f3

File tree

1 file changed

+8
-7
lines changed

1 file changed

+8
-7
lines changed

.github/workflows/docker-build.yml

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
name: ci
22

33
on:
4-
release:
5-
types: [created, published]
4+
push:
5+
tags:
6+
- "v*.*.*"
67

78
jobs:
89
docker:
@@ -12,15 +13,15 @@ jobs:
1213
matrix:
1314
include:
1415
- context: ./ui
15-
image: ${{ secrets.DOCKER_HUB_USERNAME }}/codepod-ui
16+
image: lihebi/codepod-ui
1617
- context: ./api
17-
image: ${{ secrets.DOCKER_HUB_USERNAME }}/codepod-api
18+
image: lihebi/codepod-api
1819
- context: ./proxy
19-
image: ${{ secrets.DOCKER_HUB_USERNAME }}/codepod-proxy
20+
image: lihebi/codepod-proxy
2021
- context: ./runtime/kernel
21-
image: ${{ secrets.DOCKER_HUB_USERNAME }}/codepod-kernel-python
22+
image: lihebi/codepod-kernel-python
2223
- context: ./runtime
23-
image: ${{ secrets.DOCKER_HUB_USERNAME }}/codepod-runtime
24+
image: lihebi/codepod-runtime
2425
steps:
2526
- name: Checkout
2627
uses: actions/checkout@v3

0 commit comments

Comments
 (0)