2023-08-14 07:39:39 +00:00
|
|
|
---
|
|
|
|
name: Generate Sponsors README
|
|
|
|
on:
|
|
|
|
workflow_dispatch:
|
|
|
|
schedule:
|
2023-08-29 10:42:30 +00:00
|
|
|
- cron: 0 0 * * *
|
2023-08-14 07:39:39 +00:00
|
|
|
jobs:
|
|
|
|
deploy:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Checkout 🛎️
|
2023-08-17 02:51:13 +00:00
|
|
|
uses: actions/checkout@v3
|
2023-08-14 07:39:39 +00:00
|
|
|
|
|
|
|
- name: Generate Sponsors 💖
|
|
|
|
uses: JamesIves/github-sponsors-readme-action@v1
|
|
|
|
with:
|
|
|
|
token: ${{ secrets.SPONSORS_TOKEN }}
|
|
|
|
file: 'README.md'
|
|
|
|
|
|
|
|
- name: Deploy to GitHub Pages 🚀
|
|
|
|
uses: JamesIves/github-pages-deploy-action@v4
|
|
|
|
with:
|
|
|
|
branch: master
|
|
|
|
folder: '.'
|