Skip to content

Commit e800021

Browse files
committed
fix: Remove obsolete pumptools-public release package
Since the pumptools.zip package contains already everything that's supposed to be released on the previous version already, a separate "public" release isn't required anymore. Also address this issue in the github workflows to publish the full package including everything.
1 parent b5afaef commit e800021

File tree

4 files changed

+3
-25
lines changed

4 files changed

+3
-25
lines changed

.github/workflows/build-master.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
run: |
2828
mkdir artifact
2929
cd artifact
30-
unzip ../build/docker/pumptools-public.zip
30+
unzip ../build/docker/pumptools.zip
3131
cd ..
3232
3333
- name: "Upload artifact"

.github/workflows/build-tag.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
run: |
2929
mkdir artifact
3030
cd artifact
31-
unzip ../build/docker/pumptools-public.zip
31+
unzip ../build/docker/pumptools.zip
3232
cd ..
3333
3434
- name: "Upload artifact"

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ clang-format:
5656
$(V)find src/test -iname *.h -o -iname *.c | xargs clang-format -i -style=file
5757

5858
.PHONY: package # Package the build output into distribution zip files
59-
package: $(BUILDDIR)/pumptools.zip $(BUILDDIR)/pumptools-public.zip
59+
package: $(BUILDDIR)/pumptools.zip
6060

6161
include Package.mk
6262

Package.mk

Lines changed: 0 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -236,25 +236,3 @@ $(builddir)/pumptools.zip: \
236236
$(builddir)/libc-version
237237
$(V)echo ... $@
238238
$(V)zip -j $@ $^
239-
240-
$(builddir)/pumptools-public.zip: \
241-
$(zipdir)/api.zip \
242-
$(zipdir)/doc.zip \
243-
$(zipdir)/exchook.zip \
244-
$(zipdir)/mk3hook.zip \
245-
$(zipdir)/nxhook.zip \
246-
$(zipdir)/nx2hook.zip \
247-
$(zipdir)/nxahook.zip \
248-
$(zipdir)/piubtn.zip \
249-
$(zipdir)/piuio.zip \
250-
$(zipdir)/pro2hook.zip \
251-
$(zipdir)/prohook.zip \
252-
$(zipdir)/x2hook.zip \
253-
$(zipdir)/zerohook.zip \
254-
CHANGELOG.md \
255-
LICENSE \
256-
README.md \
257-
$(builddir)/git-version \
258-
$(builddir)/libc-version
259-
$(V)echo ... $@
260-
$(V)zip -j $@ $^

0 commit comments

Comments
 (0)