File tree Expand file tree Collapse file tree 1 file changed +8
-6
lines changed Expand file tree Collapse file tree 1 file changed +8
-6
lines changed Original file line number Diff line number Diff line change 4
4
push :
5
5
branches : [ "main" ]
6
6
tags : [ 'v*.*.*' ]
7
- pull_request :
8
- branches : [ "main" ]
7
+ # pull_request:
8
+ # branches: [ "main" ]
9
9
10
10
jobs :
11
11
build :
@@ -19,12 +19,14 @@ jobs:
19
19
run : |
20
20
docker login -u $DOCKER_USER -p $DOCKER_PASSWORD
21
21
- name : Build specify tag
22
- run : docker build -t hexydev/spacebox-crawler:${{github.ref_name}} --target=app .
22
+ run : |
23
+ echo 'build image: to bronbro/spacebox-crawler:${{github.ref_name}}'
24
+ docker build -t bronbro/spacebox-crawler:${{github.ref_name}} --target=app .
23
25
- name : Build latest tag
24
26
if : startsWith(github.ref, 'refs/tags/v')
25
- run : docker build -t hexydev /spacebox-crawler:latest --target=app .
27
+ run : docker build -t bronbro /spacebox-crawler:latest --target=app .
26
28
- name : push specify tag to registry
27
- run : docker push hexydev /spacebox-crawler:${{github.ref_name}}
29
+ run : docker push bronbro /spacebox-crawler:${{github.ref_name}}
28
30
- name : push latest tag to registry
29
31
if : startsWith(github.ref, 'refs/tags/v')
30
- run : docker push hexydev /spacebox-crawler:latest
32
+ run : docker push bronbro /spacebox-crawler:latest
You can’t perform that action at this time.
0 commit comments