WIP
Some checks failed
ci/woodpecker/push/build Pipeline was successful
ci/woodpecker/push/lint Pipeline was successful
ci/woodpecker/push/release Pipeline was successful
ci/woodpecker/pr/build Pipeline was successful
ci/woodpecker/pr/release Pipeline was successful
ci/woodpecker/pr/lint Pipeline failed

This commit is contained in:
Ada 2024-05-01 21:02:04 +02:00
parent a119f831a3
commit 9341cb310c
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: gitea_urls:
api: https://git.gnous.eu/api/v1 api: https://git.gnous.eu/api/v1
download: https://git.gnous.eu download: https://git.gnous.eu
# set to true if you use a self-signed certificate
skip_tls_verify: false skip_tls_verify: false
before: before:
@ -32,14 +23,10 @@ builds:
archives: archives:
- format: tar.gz - format: tar.gz
# this name template makes the OS and Arch compatible with the results of `uname`. format_overrides:
name_template: >- -
{{ .ProjectName }}_ goos: windows
{{- title .Os }}_ format: zip
{{- if eq .Arch "amd64" }}x86_64
{{- else if eq .Arch "386" }}i386
{{- else }}{{ .Arch }}{{ end }}
{{- if .Arm }}v{{ .Arm }}{{ end }}
nfpms: nfpms:
- -
@ -65,6 +52,10 @@ nfpms:
dst: /etc/plakken/env dst: /etc/plakken/env
- src: plakken.service - src: plakken.service
dst: /usr/lib/systemd/system/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: checksum:
algorithm: sha256 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" - "3000:3000"
environment: environment:
- PLAKKEN_REDIS_ADDRESS=redis:6379 - PLAKKEN_REDIS_ADDRESS=redis:6379
- POSTGRES_PASSWORD=gitea
- PLAKKEN_REDIS_DB=0 - PLAKKEN_REDIS_DB=0
- PLAKKEN_URL_LENGTH=5 - PLAKKEN_URL_LENGTH=5
depends_on: depends_on: