mirror of
https://gitee.com/dcren/openiddict-documentation.git
synced 2025-04-05 17:38:03 +08:00
29 lines
701 B
YAML
29 lines
701 B
YAML
name: push
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- dev
|
|
|
|
jobs:
|
|
sponsor_job:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Generate sponsors section
|
|
uses: JamesIves/github-sponsors-readme-action@v1.2.2
|
|
with:
|
|
token: ${{ secrets.SPONSORS_TOKEN }}
|
|
file: 'index.md'
|
|
|
|
- name: Deploy to GitHub Pages
|
|
uses: JamesIves/github-pages-deploy-action@v4.4.1
|
|
with:
|
|
branch: dev
|
|
folder: '.'
|
|
token: ${{ secrets.GITHUB_TOKEN }}
|
|
git-config-name: OpenIddict Bot
|
|
git-config-email: 32257313+openiddict-bot@users.noreply.github.com
|
|
commit-message: Update the sponsors section |