Skip to content

Commit 77593a7

Browse files
chore(infra): test reusable workflow
1 parent 30e8989 commit 77593a7

1 file changed

Lines changed: 21 additions & 0 deletions

File tree

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: Test Deploy Custom CopilotKit Version to Cloud
2+
3+
on:
4+
workflow_dispatch:
5+
inputs:
6+
version:
7+
description: "Version to deploy (e.g. `1.5.12-next.0`)"
8+
required: true
9+
10+
jobs:
11+
run:
12+
runs-on: ubuntu-latest
13+
steps:
14+
- uses: actions/checkout@v3
15+
with:
16+
fetch-depth: 0
17+
18+
- name: Test Composite Action
19+
uses: copilotkit/copilotcloud/.github/actions/deploy-custom-copilotkit-version@main
20+
with:
21+
version: ${{ inputs.version }}

0 commit comments

Comments
 (0)