mirror of
https://github.com/adi1090x/rofi.git
synced 2024-11-23 06:38:21 -05:00
24 lines
531 B
YAML
24 lines
531 B
YAML
|
name: Generate Sponsors README
|
||
|
on:
|
||
|
push:
|
||
|
branches:
|
||
|
- master
|
||
|
jobs:
|
||
|
deploy:
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- name: Checkout 🛎️
|
||
|
uses: actions/checkout@v2
|
||
|
|
||
|
- name: Generate Sponsors 💖
|
||
|
uses: JamesIves/github-sponsors-readme-action@v1
|
||
|
with:
|
||
|
token: ${{ secrets.GEN_SPON_TKN }}
|
||
|
file: 'README.md'
|
||
|
|
||
|
- name: Deploy to GitHub Pages 🚀
|
||
|
uses: JamesIves/github-pages-deploy-action@v4
|
||
|
with:
|
||
|
branch: master
|
||
|
folder: '.'
|