Skip to content

Commit dc00f28

Browse files
authored
Push orchestrator images
1 parent eef9666 commit dc00f28

1 file changed

Lines changed: 8 additions & 4 deletions

File tree

.github/workflows/build-publish-qdup-ghcr.yml

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ on:
77
- main
88
paths:
99
- scripts/perf-lab/**
10+
- .github/workflows/build-publish-qdup-ghcr.yml
1011

1112
defaults:
1213
run:
@@ -29,10 +30,7 @@ jobs:
2930
- name: Install Podman
3031
run: sudo apt-get update && sudo apt-get -y install podman
3132

32-
- name: Login to GitHub Container Registry
33-
run: echo "${{ secrets.GITHUB_TOKEN }}" | podman login ghcr.io -u ${{ github.actor }} --password-stdin
34-
35-
- name: Build and push container images
33+
- name: Build container images
3634
run: |
3735
podman build \
3836
-f benchmark-orchestrator.Dockerfile \
@@ -42,3 +40,9 @@ jobs:
4240
--platform=linux/amd64,linux/arm64 \
4341
--push
4442
.
43+
44+
- name: Login to GitHub Container Registry
45+
run: echo "${{ secrets.GITHUB_TOKEN }}" | podman login ghcr.io -u ${{ github.actor }} --password-stdin
46+
47+
- name: Push container images
48+
run: podman push -a ghcr.io/${{ github.repository_owner }}/benchmark-orchestrator

0 commit comments

Comments
 (0)