drstats/.gitea/workflows/export.yaml

22 lines
605 B
YAML
Raw Normal View History

2024-11-23 19:07:19 +00:00
name: dR export statistics
run-name: dR export statistics
on: [push]
jobs:
Compile:
runs-on: ubuntu-latest
steps:
- name: Check out repository code
uses: actions/checkout@v4
- name: List files in the repository
run: |
ls ${{ gitea.workspace }}
- run: echo "Install dependencies."
- run: apt update
- run: apt install python3 python3-pip python3-venv make -y
2024-11-23 19:22:22 +00:00
- run: make
2024-11-23 19:07:19 +00:00
- run: echo "This job's status is ${{ job.status }}."
2024-11-23 19:09:06 +00:00
- run: git add .
- run: git commit -a -m "Update export statistics"
- run: git push