Create main.yml

This commit is contained in:
Rodrigo de Avila 2023-08-09 19:51:23 -03:00 committed by GitHub
parent 86f367a89c
commit 2be725aa94
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 28 additions and 0 deletions

28
.github/workflows/main.yml vendored Normal file
View File

@ -0,0 +1,28 @@
name: Create Report
on:
schedule:
- cron: '30 * * * *'
jobs:
create_report:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- name: Calculate mirror drift
run: |
apt install jq pandoc python3-pip curl
pip install yq
mkdir dist
bash run.sh > dist/result.md
cd dist
pandoc -f markdown -t html result.md > index.html
rm result.md
- name: Publish to Cloudflare Pages
uses: cloudflare/pages-action@v1
with:
apiToken: ${{ secrets.CLOUDFLARE_API_TOKEN }}
accountId: b3e2c8cc31d84afe192b6a5353c2f7ef
projectName: almalinux-mirrors-report
directory: dist
branch: main