mirror of https://github.com/vladmandic/automatic
24 lines
503 B
YAML
24 lines
503 B
YAML
name: update-readme
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
schedule:
|
|
- cron: '0 * * * *'
|
|
|
|
jobs:
|
|
deploy:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: checkout-code
|
|
uses: actions/checkout@v3
|
|
- name: update-readme
|
|
uses: JamesIves/github-sponsors-readme-action@v1
|
|
with:
|
|
token: ${{ secrets.PAT }}
|
|
file: 'README.md'
|
|
- name: deploy-readme
|
|
uses: JamesIves/github-pages-deploy-action@v4
|
|
with:
|
|
branch: master
|
|
folder: '.'
|