2024-07-14 21:01:12 -05:00
|
|
|
name: Generate Sponsors README
|
|
|
|
on:
|
|
|
|
workflow_dispatch:
|
|
|
|
schedule:
|
|
|
|
- cron: 30 15 * * 0-6
|
|
|
|
permissions:
|
|
|
|
contents: write
|
|
|
|
jobs:
|
|
|
|
deploy:
|
|
|
|
runs-on: ubuntu-latest
|
2024-07-30 21:14:36 -05:00
|
|
|
if: (github.event_name == 'schedule' && github.repository == 'ChrisTitusTech/winutil') || (github.event_name != 'schedule')
|
2024-07-14 21:01:12 -05:00
|
|
|
steps:
|
|
|
|
- name: Checkout 🛎️
|
2024-07-17 00:38:33 -05:00
|
|
|
uses: actions/checkout@v4
|
2024-07-14 21:01:12 -05:00
|
|
|
|
|
|
|
- name: Generate Sponsors 💖
|
|
|
|
uses: JamesIves/github-sponsors-readme-action@v1
|
|
|
|
with:
|
|
|
|
token: ${{ secrets.PAT }}
|
|
|
|
file: 'README.md'
|
|
|
|
|
|
|
|
- name: Deploy to GitHub Pages 🚀
|
|
|
|
uses: JamesIves/github-pages-deploy-action@v4
|
|
|
|
with:
|
|
|
|
branch: main
|
|
|
|
folder: '.'
|