Skip to content

Commit

Permalink
build: only push hostlookuper images
Browse files Browse the repository at this point in the history
  • Loading branch information
clementnuss committed Nov 11, 2022
1 parent 092ca81 commit 5c13ce8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/goreleaser.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -46,11 +46,11 @@ jobs:

- name: Push snapshot images
run: |
docker image ls --format "{{.Repository}}:{{.Tag}}" | xargs -I{} docker push '{}'
docker image ls --format "{{.Repository}}:{{.Tag}}" | grep hostlookuper | xargs -I{} docker push '{}'
- name: Create and push manifest for :snapshot tag
run: |
docker image ls --format "{{.Repository}}:{{.Tag}}" | paste -sd ' ' /dev/stdin > images
docker image ls --format "{{.Repository}}:{{.Tag}}" | grep hostlookuper | paste -sd ' ' /dev/stdin > images
docker manifest create $(cat images) postfinance/hostlookuper:snapshot
release:
Expand Down

0 comments on commit 5c13ce8

Please sign in to comment.