40 lines
1.0 KiB
YAML
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.5
|
|
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 }}." |