Skip to content

Commit

Permalink
Fix push to packagecloud.com
Browse files Browse the repository at this point in the history
  • Loading branch information
Felixoid committed Dec 19, 2024
1 parent 688d71f commit 12f8b08
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -113,15 +113,17 @@ $(SUM_FILES): nfpm


.ONESHELL:
packagecloud-push-deb: REPOS=$(shell echo el/{7..9})
packagecloud-push-rpm: $(wildcard out/$(NAME)-$(VERSION)*.rpm)
for repo in el/{7..9}; do
for repo in $(REPOS); do
pkgcloud-push $(REPO)/$${repo} $^ || true
done

.ONESHELL:
packagecloud-push-deb: REPOS=$(shell echo ubuntu/{bionic,focal,jammy,nomble} debian/{buster,bullseye,bookworm})
packagecloud-push-deb: $(wildcard out/$(NAME)_$(VERSION)*.deb)
for repo in ubuntu/{bionic,focal,jammy,nomble} debian/{buster,bullseye,bookworm}; do
pkgcloud-push $(REPO)/$${repo} $^ || true
for repo in $(REPOS); do
pkgcloud-push $(REPO)/$${repo} $^ || true
done

packagecloud-push: nfpm
Expand Down

0 comments on commit 12f8b08

Please sign in to comment.