File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 36
36
- name : Set up Docker Buildx
37
37
uses : docker/setup-buildx-action@v2
38
38
with :
39
- context : ${{ inputs.docker-context || github.workspace }}
39
+ context : ${{ inputs.docker-context || $GITHUB_WORKSPACE }}
40
40
target : ${{ inputs.docker-target }}
41
41
- name : Github Container Login
42
42
uses : docker/login-action@v2
@@ -48,11 +48,11 @@ jobs:
48
48
run : >-
49
49
touch .env.development;
50
50
TAG=latest docker-compose pull web || true
51
- working-directory : ${{ inputs.subdirectory || github.workspace }}
51
+ working-directory : ${{ inputs.subdirectory || $GITHUB_WORKSPACE }}
52
52
- name : Build and push
53
53
uses : docker/build-push-action@v3
54
54
with :
55
- context : ${{ inputs.docker-context || github.workspace }}
55
+ context : ${{ inputs.docker-context || $GITHUB_WORKSPACE }}
56
56
platforms : linux/amd64,linux/arm64
57
57
target : ${{ inputs.docker-target }}
58
58
build-args : |
66
66
- name : Build and push worker
67
67
uses : docker/build-push-action@v3
68
68
with :
69
- context : ${{ inputs.docker-context || github.workspace }}
69
+ context : ${{ inputs.docker-context || $GITHUB_WORKSPACE }}
70
70
platforms : linux/amd64,linux/arm64
71
71
target : ${{ inputs.docker-target }}
72
72
build-args : |
You can’t perform that action at this time.
0 commit comments