tfaour fea7467693
Some checks failed
Deploy to stage / deploy-to-stage (push) Failing after 10s
Update .gitea/workflows/build.yaml
2025-03-29 21:01:15 -04:00

17 lines
663 B
YAML

name: Deploy to stage
run-name: ${{ gitea.actor }} is deploying ThumeIT to staging 🚀
on: [push]
jobs:
deploy-to-stage:
runs-on: ubuntu-latest
steps:
- run: echo "🎉 The job was automatically triggered by a ${{ gitea.event_name }} event."
- name: Check out repository code
uses: actions/checkout@v4
- run: echo "💡 The ${{ gitea.repository }} repository has been cloned to the runner."
- run: echo "🖥️ The workflow is now ready to test your code on the runner."
- name: Copy the files
run: |
cp -r ./html/* /www-stg/html
- run: echo "🍏 This job's status is ${{ job.status }}."