Compare commits

..

2 Commits

Author SHA1 Message Date
e4a24a6d55 chore: add basic deploy workflow
All checks were successful
Deploy on Release / deploy-locally (release) Successful in 5s
2026-03-16 22:34:15 +01:00
3a80dc0dc3 chore: add gitea workflow directory with demo action
All checks were successful
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 41s
2026-03-16 17:06:26 +01:00

View File

@@ -0,0 +1,20 @@
name: Deploy on Release
on:
release:
types: [published]
jobs:
deploy-locally:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Copy to Host Volume
run: |
# Ensure the destination exists
mkdir -p /mnt/shared/pathtoglory.querst/public
# Copy the specific folder contents to the mounted volume
cp -r ./app/public /mnt/shared/pathtoglory.quest/public
echo "Public files copied to host successfully."