File tree 1 file changed +13
-1
lines changed 1 file changed +13
-1
lines changed Original file line number Diff line number Diff line change @@ -52,10 +52,22 @@ jobs:
52
52
run : |
53
53
echo "REPO=${GITHUB_REPOSITORY,,}" >>${GITHUB_ENV}
54
54
55
+ - name : Build ${{ matrix.tag }}
56
+ if : !(github.ref == 'refs/heads/trunk' && github.event_name != 'pull_request')
57
+ uses : docker/build-push-action@v5
58
+ with :
59
+ push : false
60
+ tags : http-proxy:${{ matrix.tag }}
61
+ build-args : |
62
+ FEATURES=${{ matrix.features }}
63
+ RUST_TARGET=${{ matrix.rust-target }}
64
+ MUSL_TARGET=${{ matrix.musl-target }}
65
+
55
66
- name : Build and push ${{ matrix.tag }}
67
+ if : github.ref == 'refs/heads/trunk' && github.event_name != 'pull_request'
56
68
uses : docker/build-push-action@v5
57
69
with :
58
- push : github.ref == 'refs/heads/trunk' && github.event_name != 'pull_request'
70
+ push : true
59
71
tags : http-proxy:${{ matrix.tag }}
60
72
build-args : |
61
73
FEATURES=${{ matrix.features }}
You can’t perform that action at this time.
0 commit comments