Files
rsync-action/.gitea/workflows/test.yml
h7x4 2eaf7b8d5d
All checks were successful
Test upload web docs / test (push) Successful in 28s
.gitea/workflows: update gitea-web target host
2025-08-03 04:51:34 +02:00

25 lines
761 B
YAML

name: Test upload web docs
on:
push:
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Create example content
run: |
mkdir -p web
echo "<h1>Works</h1><a href="other.html">Link to other page</a>" > web/index.html
echo "<h1>Works again</h1>" > web/other.html
- name: Upload web docs
uses: https://git.pvv.ntnu.no/Projects/rsync-action@${{ gitea.ref_name }}
with:
source: web
target: ${{ gitea.ref_name }}
username: gitea-web
ssh-key: ${{ secrets.WEB_SYNC_SSH_KEY }}
host: pages.pvv.ntnu.no
known-hosts: "pages.pvv.ntnu.no ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIH2QjfFB+city1SYqltkVqWACfo1j37k+oQQfj13mtgg"