WIP
All checks were successful
ci/woodpecker/push/build Pipeline was successful
ci/woodpecker/push/release Pipeline was successful
ci/woodpecker/push/lint Pipeline was successful
ci/woodpecker/pr/build Pipeline was successful
ci/woodpecker/pr/release Pipeline was successful
ci/woodpecker/pr/lint Pipeline was successful

This commit is contained in:
Ada 2024-05-01 21:02:04 +02:00
parent 498f299889
commit aef10ffbe2
Signed by: ada
GPG key ID: 6A7F898157C6DE6E
5 changed files with 18 additions and 18 deletions

View file

@ -1,15 +1,6 @@
# This is an example .goreleaser.yml file with some sensible defaults.
# Make sure to check the documentation at https://goreleaser.com
# The lines below are called `modelines`. See `:help modeline`
# Feel free to remove those if you don't want/need to use them.
# yaml-language-server: $schema=https://goreleaser.com/static/schema.json
# vim: set ts=2 sw=2 tw=0 fo=cnqoj
gitea_urls:
api: https://git.gnous.eu/api/v1
download: https://git.gnous.eu
# set to true if you use a self-signed certificate
skip_tls_verify: false
before:
@ -32,14 +23,10 @@ builds:
archives:
- format: tar.gz
# this name template makes the OS and Arch compatible with the results of `uname`.
name_template: >-
{{ .ProjectName }}_
{{- title .Os }}_
{{- if eq .Arch "amd64" }}x86_64
{{- else if eq .Arch "386" }}i386
{{- else }}{{ .Arch }}{{ end }}
{{- if .Arm }}v{{ .Arm }}{{ end }}
format_overrides:
-
goos: windows
format: zip
nfpms:
-
@ -65,6 +52,10 @@ nfpms:
dst: /etc/plakken/env
- src: plakken.service
dst: /usr/lib/systemd/system/plakken.service
scripts:
preinstall: "deployement/goreleaser/preinstall.sh"
preremove: "deployement/goreleaser/preremove.sh"
postremove: "deployement/goreleaser/postremove.sh"
checksum:
algorithm: sha256

View file

@ -0,0 +1 @@
userdel -r plakken

View file

@ -0,0 +1,8 @@
if ! getent passwd plakken > /dev/null; then
useradd -r -d /var/lib/plakken -s /sbin/nologin -U plakken
fi
if ! test -d /var/lib/plakken; then
mkdir -p /var/lib/plakken
chmod 0750 /var/lib/plakken
chown -R plakken:plakken /var/lib/plakken
fi

View file

@ -0,0 +1 @@
systemctl stop plakken

View file

@ -20,7 +20,6 @@ services:
- "3000:3000"
environment:
- PLAKKEN_REDIS_ADDRESS=redis:6379
- POSTGRES_PASSWORD=gitea
- PLAKKEN_REDIS_DB=0
- PLAKKEN_URL_LENGTH=5
depends_on: