Skip to content

Commit f17dfa1

Browse files
committed
Enable manual workflow dispatch for CI/CD build
Add workflow_dispatch trigger to allow manual execution of the CI/CD workflow from the GitHub Actions UI. This enables developers to run the workflow on-demand without requiring a push or pull request. The workflow will now show a 'Run workflow' button in the GitHub Actions interface while maintaining all existing automatic triggers.
1 parent c893629 commit f17dfa1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/continuous-integration.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ on:
55
branches:
66
- main
77
- '*.*.x'
8+
workflow_dispatch:
89

910
jobs:
1011
build:
@@ -86,4 +87,3 @@ jobs:
8687
unzip spring-ai-$PROJECT_VERSION-docs.zip
8788
ssh -i $HOME/.ssh/key $DOCS_USERNAME@$DOCS_HOST "cd $DOCS_PATH && mkdir -p $PROJECT_VERSION"
8889
scp -i $HOME/.ssh/key -r api $DOCS_USERNAME@$DOCS_HOST:$DOCS_PATH/$PROJECT_VERSION
89-

0 commit comments

Comments
 (0)