Compare commits

...

19 commits

Author SHA1 Message Date
Ida
c6d8803756 trigger deploy
All checks were successful
Deploy Nyla / deploy (push) Successful in 42s
2026-04-20 20:33:35 +02:00
Ida
91e6471798 trigger deploy
Some checks failed
Deploy Nyla / deploy (push) Failing after 2s
2026-04-20 20:32:35 +02:00
Ida
0dc812d96d trigger deploy
Some checks failed
Deploy Nyla / deploy (push) Failing after 2s
2026-04-20 20:30:53 +02:00
Ida
90953376b1 trigger deploy
Some checks failed
Deploy Nyla / deploy (push) Failing after 1s
2026-04-20 20:29:47 +02:00
Ida
5dc8c32f5d trigger deploy
Some checks failed
Deploy Nyla / deploy (push) Failing after 1s
2026-04-20 20:27:33 +02:00
Ida
2ed863af54 trigger deploy
Some checks failed
Deploy Nyla / deploy (push) Failing after 1s
2026-04-20 20:25:16 +02:00
Ida
bf6ddf3fcc add forgejo deploy workflow
Some checks failed
Deploy Nyla / deploy (push) Failing after 2m32s
2026-04-20 20:16:15 +02:00
Patrick Motsch
7c35c7117b
Merge pull request #47 from valueonag/int
Int
2026-04-20 19:11:14 +02:00
Patrick Motsch
13af1dbb05
Merge pull request #45 from valueonag/int
Some checks failed
Deploy Nyla Frontend to Production / build-and-deploy (push) Has been cancelled
Int
2026-04-19 01:39:32 +02:00
Patrick Motsch
bbd78696e6
Merge pull request #42 from valueonag/int
Int
2026-04-17 21:54:34 +02:00
Patrick Motsch
0178de9650
Merge pull request #34 from valueonag/int
Some checks are pending
Deploy Nyla Frontend to Production / build-and-deploy (push) Waiting to run
Int
2026-04-14 16:28:18 +02:00
Patrick Motsch
a6241fb296
Merge pull request #32 from valueonag/int
Int
2026-04-14 13:32:25 +02:00
Patrick Motsch
51cad2cab6
Merge pull request #28 from valueonag/int
core class for system attributes sysCreated / sysModified
2026-04-04 19:15:21 +02:00
Patrick Motsch
ccb6da36f0
Merge pull request #27 from valueonag/int
Int
2026-04-04 16:21:11 +02:00
Patrick Motsch
e1d06e2a9d
Merge pull request #24 from valueonag/int
Int
2026-03-23 10:39:04 +01:00
Patrick Motsch
2ade186821
Merge pull request #22 from valueonag/int
fixed rendering issues
2026-03-22 11:11:45 +01:00
Patrick Motsch
708687a5e4
Merge pull request #21 from valueonag/int
Int
2026-03-22 01:28:21 +01:00
Patrick Motsch
197bc51632
Merge pull request #20 from valueonag/int
Int
2026-03-19 13:44:20 +01:00
Patrick Motsch
d3c3a5d465
Merge pull request #15 from valueonag/int
fix feature instance passing
2026-03-13 08:31:28 +01:00

View file

@ -0,0 +1,27 @@
name: Deploy Nyla
on:
push:
branches:
- main
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Deploy to Infomaniak VM
env:
SSH_PRIVATE_KEY: ${{ secrets.SSH_PRIVATE_KEY }}
run: |
mkdir -p ~/.ssh
echo "$SSH_PRIVATE_KEY" > ~/.ssh/deploy_key
chmod 600 ~/.ssh/deploy_key
echo "StrictHostKeyChecking=no" >> ~/.ssh/config
echo "UserKnownHostsFile=/dev/null" >> ~/.ssh/config
ssh -i ~/.ssh/deploy_key ubuntu@porta.poweron.swiss "
cd /srv/nyla/current &&
git pull &&
npm ci &&
npm run build:prod &&
sudo systemctl reload nginx
"