4 Commits

Author SHA1 Message Date
a5bfa7de35 ci: fix syntax
Some checks failed
Continuous Delivery / build_n_upload (push) Has been cancelled
2026-02-22 00:27:38 +01:00
abb5fbf448 ci: fix syntax 2026-02-22 00:23:29 +01:00
d3d2e35f48 fix: files mode 2026-02-22 00:19:14 +01:00
3f82dedad2 fix: typo makefile 2026-02-22 00:11:50 +01:00
3 changed files with 5 additions and 5 deletions

View File

@@ -18,7 +18,7 @@ jobs:
env:
GIT_REFERENCE: ${{ github.ref }}
- name: Build rpm package
run: rpmbuild -ba "$(make name).spec"
run: rpmbuild -ba netoik-db.spec
- name: Upload rpm package
run: make upload
env:

View File

@@ -17,4 +17,4 @@ jobs:
- name: Build tarball
run: make tarball
- name: Build rpm file
run: rpmbuild -ba %(make name).spec
run: rpmbuild -ba netoik-db.spec

View File

@@ -30,9 +30,9 @@ build_arch:
.PHONY: install
install:
install --directory $(DESTDIR)$(RPM_SYSCONFDIR)/postgres $(DESTDIR)$(RPM_UNITDIR)/postgresql.service.d
install --target-directory=$(DESTDIR)$(RPM_SYSCONFDIR)/postgres files/postgres/postgresql.conf files/postgres/pg_hba.conf
install --target-directory=$(DESTDIR)$(RPM_UNITDIR)/postgresql.service.d filrs/systemd/postgres.conf
install --mode=755 --directory $(DESTDIR)$(RPM_SYSCONFDIR)/postgres $(DESTDIR)$(RPM_UNITDIR)/postgresql.service.d
install --mode=644 --target-directory=$(DESTDIR)$(RPM_SYSCONFDIR)/postgres files/postgres/postgresql.conf files/postgres/pg_hba.conf
install --mode=644 --target-directory=$(DESTDIR)$(RPM_UNITDIR)/postgresql.service.d files/systemd/postgres.conf
$(RPM_TARBALL_PATH): *
git archive --format=tar.gz \