chore(tooling): update deploy workflow to not need root
All checks were successful
/ test (push) Successful in 20s
/ build (push) Successful in 26s
/ deploy (push) Successful in 4s
/ publish (push) Successful in 13s

This commit is contained in:
Julien Dessaux 2025-03-15 23:30:39 +01:00
parent 5ef1491d35
commit fff45a9649
Signed by: adyxax
GPG key ID: F92E51B86E07177E
3 changed files with 12 additions and 9 deletions

View file

@ -51,8 +51,8 @@ jobs:
umask 077 umask 077
printf '%s' "$SSH_PRIVATE_KEY" | base64 -d > private_key printf '%s' "$SSH_PRIVATE_KEY" | base64 -d > private_key
SSHOPTS="-i private_key -o StrictHostKeyChecking=accept-new" SSHOPTS="-i private_key -o StrictHostKeyChecking=accept-new"
rsync -e "ssh ${SSHOPTS}" ods root@ods.adyxax.org:/usr/local/bin/ rsync -e "ssh ${SSHOPTS}" ods ods@ods.adyxax.org:
ssh ${SSHOPTS} root@ods.adyxax.org "systemctl restart ods" ssh ${SSHOPTS} ods@ods.adyxax.org "chmod +x ods; systemctl --user restart ods"
env: env:
SSH_PRIVATE_KEY: '${{ secrets.SSH_PRIVATE_KEY }}' SSH_PRIVATE_KEY: '${{ secrets.SSH_PRIVATE_KEY }}'
publish: publish:

9
CHANGELOG.md Normal file
View file

@ -0,0 +1,9 @@
# Changelog
All notable changes to this project will be documented in this file.
## 1.0.0 - 2025-03-15
### Added
- Initial release.

View file

@ -29,22 +29,16 @@ file, sorry for not sharing it.
## Systemd service ## Systemd service
I use this simple systemd service unit to run ODS: I use this simple systemd user service unit to run ODS as an unprivileged user:
``` ini ``` ini
[Unit] [Unit]
After=network-online.target
Description=ods.adyxax.org service Description=ods.adyxax.org service
Wants=network-online.target
[Service] [Service]
DynamicUser=yes
Environment="ODS_PORT=8090" Environment="ODS_PORT=8090"
ExecStart=/usr/local/bin/ods ExecStart=/usr/local/bin/ods
Type=simple Type=simple
[Install]
WantedBy=multi-user.target
``` ```
## Nginx reverse proxy ## Nginx reverse proxy