Skip to content

Commit 1ef169b

Browse files
committed
push set to true
1 parent 1d0d094 commit 1ef169b

File tree

2 files changed

+5
-12
lines changed

2 files changed

+5
-12
lines changed

.github/workflows/backend.yaml

Lines changed: 3 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -36,13 +36,6 @@ jobs:
3636
with:
3737
username: ${{ secrets.DOCKERHUB_USERNAME }}
3838
password: ${{ secrets.DOCKERHUB_PASSWORD }}
39-
40-
- name: Login to GitHub Container Registry
41-
uses: docker/login-action@v2
42-
with:
43-
registry: ghcr.io
44-
username: ${{ github.actor }}
45-
password: ${{ secrets.GITHUB_TOKEN }}
4639
-
4740
name: Docker meta backend
4841
id: backendMeta
@@ -94,7 +87,7 @@ jobs:
9487
with:
9588
context: ./backend
9689
platforms: linux/amd64,linux/arm64
97-
push: ${{ github.event_name != 'pull_request' }}
90+
push: true
9891
tags: ${{ steps.backendMeta.outputs.tags }}
9992
labels: ${{ steps.backendMeta.outputs.labels }}
10093

@@ -104,7 +97,7 @@ jobs:
10497
with:
10598
context: ./backend
10699
platforms: linux/amd64,linux/arm64
107-
push: ${{ github.event_name != 'pull_request' }}
100+
push: true
108101
tags: ${{ steps.heartbeatMeta.outputs.tags }}
109102
file: ./backend/heartbeat.Dockerfile
110103
labels: ${{ steps.heartbeatMeta.outputs.labels }}
@@ -115,7 +108,7 @@ jobs:
115108
with:
116109
context: ./backend
117110
platforms: linux/amd64,linux/arm64
118-
push: ${{ github.event_name != 'pull_request' }}
111+
push: true
119112
tags: ${{ steps.messagesMeta.outputs.tags }}
120113
file: ./backend/messages.Dockerfile
121114
labels: ${{ steps.messagesMeta.outputs.labels }}

.github/workflows/frontend.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ jobs:
6262
context: ./frontend
6363
target: clowder-build
6464
platforms: linux/amd64
65-
push: ${{ github.event_name != 'pull_request' }}
65+
push: true
6666
tags: ${{ steps.meta.outputs.tags }}
6767
labels: ${{ steps.meta.outputs.labels }}
6868
-
@@ -72,6 +72,6 @@ jobs:
7272
context: ./frontend
7373
target: clowder-runtime
7474
platforms: linux/amd64
75-
push: ${{ github.event_name != 'pull_request' }}
75+
push: true
7676
tags: ${{ steps.meta.outputs.tags }}
7777
labels: ${{ steps.meta.outputs.labels }}

0 commit comments

Comments
 (0)