mirror of
https://github.com/anuraghazra/github-readme-stats.git
synced 2025-01-12 13:41:40 +08:00
21 lines
478 B
YAML
21 lines
478 B
YAML
|
name: Deployment Prep
|
||
|
on:
|
||
|
workflow_dispatch:
|
||
|
push:
|
||
|
branches:
|
||
|
- master
|
||
|
|
||
|
jobs:
|
||
|
config:
|
||
|
if: github.repository == 'anuraghazra/github-readme-stats'
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- uses: actions/checkout@v3
|
||
|
- name: Deployment Prep
|
||
|
run: python ./.github/workflows/deploy-prep.py
|
||
|
- uses: stefanzweifel/git-auto-commit-action@v4
|
||
|
with:
|
||
|
branch: vercel
|
||
|
create_branch: true
|
||
|
push_options: "--force"
|