6 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
c9c870b0b5 fix: add postgres files
Some checks failed
Continuous Delivery / build_n_upload (push) Has been cancelled
2026-02-22 00:10:25 +01:00
0ac3985acc fix: file names 2026-02-22 00:09:02 +01:00
6 changed files with 6 additions and 6 deletions

View File

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

View File

@@ -17,4 +17,4 @@ jobs:
- name: Build tarball - name: Build tarball
run: make tarball run: make tarball
- name: Build rpm file - 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 .PHONY: install
install: install:
install --directory $(DESTDIR)$(RPM_SYSCONFDIR)/postgres $(DESTDIR)$(RPM_UNITDIR)/postgresql.service.d install --mode=755 --directory $(DESTDIR)$(RPM_SYSCONFDIR)/postgres $(DESTDIR)$(RPM_UNITDIR)/postgresql.service.d
install --target-directory=$(DESTDIR)$(RPM_SYSCONFDIR)/postgres files/postgres/postgresql.conf files/nginx/default.conf install --mode=644 --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=644 --target-directory=$(DESTDIR)$(RPM_UNITDIR)/postgresql.service.d files/systemd/postgres.conf
$(RPM_TARBALL_PATH): * $(RPM_TARBALL_PATH): *
git archive --format=tar.gz \ git archive --format=tar.gz \

View File

@@ -5,7 +5,7 @@ Version: %(make version)
Release: %(make release) Release: %(make release)
Summary: Netoik Reverse Proxy Summary: Netoik Reverse Proxy
License: MIT License: MIT
URL: https://git.netoik.io/samuel/netoik-rp URL: https://git.netoik.io/samuel/%(make name)
Source0: %{name}-%{version}.tar.gz Source0: %{name}-%{version}.tar.gz
Buildarch: %(make build_arch) Buildarch: %(make build_arch)