mirror of https://github.com/langgenius/dify.git
22 lines
435 B
YAML
22 lines
435 B
YAML
name: Deploy Dev
|
|
|
|
on:
|
|
workflow_run:
|
|
workflows: ["Build and Push API & Web"]
|
|
branches:
|
|
- "dev/plugin-deploy"
|
|
types:
|
|
- completed
|
|
|
|
jobs:
|
|
deploy:
|
|
runs-on: ubuntu-latest
|
|
if: |
|
|
github.event.workflow_run.conclusion == 'success'
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v4
|
|
- name: debug context var
|
|
run: |
|
|
echo "Commit ID: ${{ github.sha }}"
|