1234567891011121314151617181920212223242526 |
- name: publish-sponsors
- on:
- schedule:
- - cron: 30 15 * * 0-6
-
- jobs:
- generate-sponsors:
- runs-on: ubuntu-latest
- steps:
- - name: Checkout 🛎️
- uses: actions/checkout@v2
-
- - name: Generate Sponsors 💖
- uses: JamesIves/github-sponsors-readme-action@releases/v1
- with:
- token: ${{ secrets.PAT }}
- marker: 'real-sponsors'
- file: 'README.md'
- template: '<a href="https://github.com/{{{ login }}}"><img src="https://github.com/{{{ login }}}.png" width="40px" alt="" /></a>'
- minimum: 500
-
- - name: Deploy to GitHub Pages
- uses: JamesIves/github-pages-deploy-action@4.1.1
- with:
- branch: dev
- folder: '.'
|