Compare commits

...

20 Commits

Author SHA1 Message Date
popovskik 5863c295b7 Merge origin/develop into feat/no-code-cms
Bring CMS/event branch up to date with develop. Net incoming change is the
CI deploy runner config (install rsync/openssh); all other develop history
was already present via shared kristijan-dev lineage.

Meet Student Slovenia 2026 remains on this branch only (unpublished).

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
2026-08-25 22:58:51 +02:00
mark e063b3cd4a ci: install rsync in deploy runner container
Deploy to Production on Develop Push / deploy (push) Successful in 20s Details
2026-08-20 08:30:09 +00:00
mark 9c451f12c5 ci: trigger deploy after migration to sh37.neoserv.si
Deploy to Production on Develop Push / deploy (push) Failing after 14s Details
2026-08-20 10:28:27 +02:00
popovskik 6054312ad4 Merge pull request 'kristijan-dev' (#17) from kristijan-dev into develop
Deploy to Production on Develop Push / deploy (push) Successful in 16s Details
Reviewed-on: #17
2026-08-08 10:32:25 +00:00
popovskik 2b30a6c4cb Merge pull request 'Student Welcome Guide changes-2 review + Become-a-member carousel (EN/MK/SI)' (#16) from kristijan-dev into develop
Deploy to Production on Develop Push / deploy (push) Successful in 14s Details
Reviewed-on: #16
2026-08-05 22:04:06 +00:00
popovskik 541d155bc3 Merge pull request 'Landing/About/guide polish + Proxify-style category filter bar' (#15) from kristijan-dev into develop
Deploy to Production on Develop Push / deploy (push) Successful in 15s Details
Reviewed-on: #15
2026-08-05 20:31:39 +00:00
popovskik db1fa813c2 Merge pull request 'Student Welcome Guide photos + Macedonian proofreading corrections' (#14) from kristijan-dev into develop
Deploy to Production on Develop Push / deploy (push) Successful in 13s Details
Reviewed-on: #14
2026-08-04 12:53:28 +00:00
popovskik c092e65ae0 Merge pull request 'security: enforce Content-Security-Policy' (#13) from kristijan-dev into develop
Deploy to Production on Develop Push / deploy (push) Successful in 12s Details
2026-08-04 08:48:52 +00:00
popovskik 15624454e8 Merge pull request 'security: force HTTPS + HSTS' (#12) from kristijan-dev into develop
Deploy to Production on Develop Push / deploy (push) Successful in 12s Details
2026-08-04 08:39:59 +00:00
popovskik 77dc3ae940 Merge pull request 'HOTFIX: restore live site (revert cross-domain redirect that 404'd)' (#11) from kristijan-dev into develop
Deploy to Production on Develop Push / deploy (push) Successful in 13s Details
2026-08-04 00:09:43 +00:00
popovskik a7dceb4f7b Merge pull request 'Pre-launch: security + health + a11y hardening & offline Ask MSOS assistant' (#10) from kristijan-dev into develop
Deploy to Production on Develop Push / deploy (push) Successful in 18s Details
Reviewed-on: #10
2026-08-04 00:02:42 +00:00
popovskik ea1afcd6ae Merge pull request 'Hub redesign, Gallery, per-language logos, footer/menu fixes + mobile polish' (#9) from kristijan-dev into develop
Deploy to Production on Develop Push / deploy (push) Successful in 6s Details
Reviewed-on: #9
2026-08-03 13:38:56 +00:00
popovskik 8a32c10273 Merge pull request 'Policy accuracy (GA/consent), dual contact email, footer dedup' (#8) from kristijan-dev into develop
Deploy to Production on Develop Push / deploy (push) Successful in 6s Details
Reviewed-on: #8
2026-08-03 08:39:13 +00:00
popovskik bc8a98fef4 Merge pull request 'SEO foundation, analytics + consent, bank-account blog, MK/SI translations' (#7) from kristijan-dev into develop
Deploy to Production on Develop Push / deploy (push) Successful in 6s Details
Reviewed-on: #7
2026-08-02 21:00:32 +00:00
popovskik 75722d064b Merge pull request 'Homepage refresh, newsletter rollout, pagination + Events/Projects redesign' (#6) from kristijan-dev into develop
Deploy to Production on Develop Push / deploy (push) Successful in 1m28s Details
Reviewed-on: #6
2026-08-01 18:33:11 +00:00
popovskik 72c5c1a3d6 Merge pull request 'Become a Member polish: bento benefits, merged/redesigned join form, floating CTA, header + nav fixes' (#5) from kristijan-dev into develop
Deploy to Production on Develop Push / deploy (push) Successful in 1m8s Details
Reviewed-on: #5
2026-08-01 11:24:39 +00:00
popovskik ab2056dda3 Merge pull request 'Become a Member page, minimum-income update + announcement, mobile & nav/header/hero fixes' (#4) from kristijan-dev into develop
Deploy to Production on Develop Push / deploy (push) Successful in 1m7s Details
Reviewed-on: #4
2026-08-01 10:33:30 +00:00
popovskik 9247ed74bf Merge pull request 'Student Welcome Guide: full trilingual guide + personal route generator' (#3) from kristijan-dev into develop
Deploy to Production on Develop Push / deploy (push) Successful in 1m28s Details
Reviewed-on: #3
2026-07-31 11:46:37 +00:00
popovskik 3ce470946d Merge pull request 'kristijan-dev' (#2) from kristijan-dev into develop
Deploy to Production on Develop Push / deploy (push) Successful in 1m21s Details
Reviewed-on: #2
2026-07-29 11:40:51 +00:00
popovskik 6c022d47d9 Merge pull request 'Improve article TOC, sticky header, and cross-language anchors' (#1) from kristijan-dev into develop
Deploy to Production on Develop Push / deploy (push) Successful in 1m35s Details
Reviewed-on: #1
2026-07-28 08:14:04 +00:00
1 changed files with 5 additions and 2 deletions

View File

@ -27,10 +27,13 @@ jobs:
- name: Deploy to Server via rsync
run: |
sudo apt-get update -qq
sudo apt-get install -y -qq rsync openssh-client
mkdir -p ~/.ssh
echo "${{ secrets.SSH_PRIVATE_KEY }}" > ~/.ssh/id_rsa
chmod 600 ~/.ssh/id_rsa
rsync -avz --delete \
--exclude=".git/" \
--exclude=".gitea/" \
@ -44,4 +47,4 @@ jobs:
--exclude="tools/" \
-e "ssh -p ${{ secrets.SSH_PORT }} -i ~/.ssh/id_rsa -o StrictHostKeyChecking=no" \
./ \
${{ secrets.SSH_USER }}@${{ secrets.SSH_HOST }}:${{ secrets.TARGET_DIR }}
${{ secrets.SSH_USER }}@${{ secrets.SSH_HOST }}:${{ secrets.TARGET_DIR }}