File tree Expand file tree Collapse file tree 1 file changed +4
-16
lines changed Expand file tree Collapse file tree 1 file changed +4
-16
lines changed Original file line number Diff line number Diff line change 34
34
if : github.event_name == 'workflow_dispatch'
35
35
run : echo "LATEST_TAG=$(git tag | sort --version-sort | tail -n1)" >> $GITHUB_ENV
36
36
37
- - name : Set up Docker Buildx
38
- id : buildx
39
- uses : docker/setup-buildx-action@v3
40
-
41
37
- name : Log in to GitHub Docker Registry
42
38
if : github.ref_type == 'tag' || github.event_name == 'workflow_dispatch'
43
39
uses : docker/login-action@v3
@@ -46,19 +42,11 @@ jobs:
46
42
username : ${{ github.actor }}
47
43
password : ${{ secrets.GITHUB_TOKEN }}
48
44
49
- - name : Build and export to Docker local cache
50
- uses : docker/build-push-action@v6
51
- env :
52
- DOCKER_BUILD_RECORD_UPLOAD : false
53
- with :
54
- context : ./docker
55
- # Need load and tags so we can test it below
56
- load : true
57
- tags : tag_for_testing
58
- network : host
45
+ - name : Build
46
+ run : docker compose build
59
47
60
- - name : Test cli works in cached runtime image
61
- run : docker run docker.io/library/tag_for_testing --version
48
+ - name : Check on built image
49
+ run : docker images | grep -c pvws
62
50
63
51
- name : Create tags for publishing image
64
52
id : meta
You can’t perform that action at this time.
0 commit comments