From 48aa046356c85e397e64c265fce944fb10a1beb0 Mon Sep 17 00:00:00 2001 From: Andras Schmelczer Date: Sat, 6 Jun 2026 14:58:35 +0100 Subject: [PATCH] Adopt shared ci-actions for publishing 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) --- .forgejo/workflows/deploy.yml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/.forgejo/workflows/deploy.yml b/.forgejo/workflows/deploy.yml index a83df4a..e2c0649 100644 --- a/.forgejo/workflows/deploy.yml +++ b/.forgejo/workflows/deploy.yml @@ -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