Compare commits

...

2 commits

Author SHA1 Message Date
fcb0e25ebd Merge pull request 'Adopt shared ci-actions for publishing' (#76) from ci/shared-actions into main
All checks were successful
Deploy to Pages / build (push) Successful in 3m4s
Reviewed-on: https://home.schmelczer.dev/git/git/andras/schmelczer-dev/pulls/76
2026-06-06 15:18:08 +01:00
48aa046356 Adopt shared ci-actions for publishing
All checks were successful
Deploy to Pages / build (pull_request) Successful in 3m16s
Replace the inline publish step(s) with the canonical shell-only composite
actions in andras/ci-actions (deploy-pages / docker-publish / forgejo-release).

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
2026-06-06 14:58:35 +01:00

View file

@ -45,14 +45,14 @@ jobs:
- name: Copy build to host pages mount
if: github.event_name == 'push' && github.ref == 'refs/heads/main'
run: |
apt update && apt install -y rsync
mkdir -p /pages
rsync -a --delete dist/ /pages/schmelczer-dev
uses: http://forgejo:3000/andras/ci-actions/deploy-pages@main
with:
source: dist
target: schmelczer-dev
- name: Copy build to staging pages mount
if: github.event_name == 'pull_request'
run: |
apt update && apt install -y rsync
mkdir -p /pages
rsync -a --delete dist/ /pages/schmelczer-dev-staging
uses: http://forgejo:3000/andras/ci-actions/deploy-pages@main
with:
source: dist
target: schmelczer-dev-staging