klank-docs/.gitea/workflows/demo.yaml
vitrinekast 4a9c21f699
Some checks failed
Gitea Actions Demo / compile-html (push) Failing after 1m13s
workflow version
2025-01-07 12:13:55 +01:00

40 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/SamKirkland/FTP-Deploy-Action@v4.3.4
with:
server: ${{ secrets.FTP_SERVER }}
username: ${{ secrets.FTP_USERNAME }}
password: ${{ secrets.FTP_PASSWORD }}
port: 7008
local-dir: dist/
dry-run: true
log-level: verbose
server-dir: /vitrinekast/temp-action/
- run: echo "🍏 This job's status is ${{ job.status }}."