klank-docs/.gitea/workflows/demo.yaml
vitrinekast 20303e3a25
All checks were successful
Gitea Actions Demo / compile-html (push) Successful in 33s
diff workflow
2025-01-07 12:30:26 +01:00

39 lines
1.0 KiB
YAML

name: Gitea Actions Demo
run-name: ${{ gitea.actor }} is testing out Gitea Actions 🚀
on:
push:
branches: ["main"]
jobs:
compile-html:
runs-on: ubuntu-latest
steps:
- name: Check out repository code
uses: actions/checkout@v4
- name: Setup python
uses: actions/setup-python@v5
with:
python-version: "3.11.2"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Run the python application
run: python app.py
- name: Push the changes to the FTP server
uses: https://github.com/wangyucode/sftp-upload-action@v2.0.4
with:
host: ${{ secrets.FTP_SERVER }}
username: ${{ secrets.FTP_USERNAME }}
password: ${{ secrets.FTP_PASSWORD }}
port: 7008
localDir: 'dist'
dryRun: true
remoteDir: '/vitrinekast/temp-action/'
- run: echo "🍏 This job's status is ${{ job.status }}."