File tree 1 file changed +11
-3
lines changed 1 file changed +11
-3
lines changed Original file line number Diff line number Diff line change @@ -4,8 +4,9 @@ name: Build docker images
4
4
5
5
on :
6
6
push :
7
- tags : ["v*"]
8
- branches : [ master, main, develop ]
7
+ # TEMP
8
+ # tags: ["v*"]
9
+ # branches: [ master, main, develop ]
9
10
workflow_dispatch :
10
11
11
12
permissions :
@@ -44,12 +45,16 @@ jobs:
44
45
45
46
- name : Log in to DockerHub
46
47
uses : docker/login-action@v3
48
+ # TEMP
49
+ if : ${{ false }}
47
50
with :
48
51
username : ${{ secrets.DOCKERHUB_USERNAME }}
49
52
password : ${{ secrets.DOCKERHUB_TOKEN }}
50
53
51
54
- name : Log in to GHCR
52
55
uses : docker/login-action@v3
56
+ # TEMP
57
+ if : ${{ false }}
53
58
with :
54
59
registry : ghcr.io
55
60
username : ${{ github.repository_owner }}
74
79
id : build-and-push
75
80
uses : docker/build-push-action@v6
76
81
with :
77
- push : true
82
+ # TEMP
83
+ push : false
78
84
labels : |
79
85
gitsha1=${{ github.sha }}
80
86
org.opencontainers.image.version=${{ env.SYNAPSE_VERSION }}
88
94
CARGO_NET_GIT_FETCH_WITH_CLI=true
89
95
90
96
- name : Sign the images with GitHub OIDC Token
97
+ # TEMP
98
+ if : ${{ false }}
91
99
env :
92
100
DIGEST : ${{ steps.build-and-push.outputs.digest }}
93
101
TAGS : ${{ steps.set-tag.outputs.tags }}
You can’t perform that action at this time.
0 commit comments