42 lines
1.1 KiB
YAML
42 lines
1.1 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: List files in the repository
|
|
run: |
|
|
ls ${{ gitea.workspace }}
|
|
|
|
- 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: '${{ gitea.workspace }}/dist-tmp'
|
|
remoteDir: 'temp-action'
|
|
|
|
- run: echo "🍏 This job's status is ${{ job.status }}." |