mirror of
https://github.com/csunny/DB-GPT.git
synced 2026-01-17 16:06:30 +00:00
21 lines
384 B
YAML
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 }}"}'
|