Files
DB-GPT/.github/workflows/sync-docs.yaml
lcxadml 425f4ab48b Feat/sync docs (#1088)
Co-authored-by: lcx01800250 <lcx01800250@alibaba-inc.com>
2024-01-20 10:09:35 +08:00

21 lines
384 B
YAML

name: Trigger Auto Publish
on:
push:
tags:
- "*"
jobs:
trigger-api:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Trigger Publish API
run: |
curl -X POST ${{secrets.PUBLISH_SECRET_API}} \
-H "Content-Type: application/json" \
-d '{"tag": "${{ github.ref }}"}'