Skip to content

Commit

Permalink
Add triggers to run nlp engine updates
Browse files Browse the repository at this point in the history
This will automatically update the separate NLP engine executables for windows, Linux, and mac.
  • Loading branch information
ddehilster authored Oct 10, 2024
1 parent bdc1b9a commit 4950c92
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/move-assets.yml
Original file line number Diff line number Diff line change
Expand Up @@ -152,3 +152,27 @@ jobs:
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: "./visualtext.zip"

- name: Trigger nlp-engine-windows workflow
uses: benc-uk/workflow-dispatch@v1
with:
workflow: nlp-engine-build.yml
token: ${{ secrets.GITHUB_TOKEN }}
repo: VisualText/nlp-engine-windows
ref: main

- name: Trigger nlp-engine-linux workflow
uses: benc-uk/workflow-dispatch@v1
with:
workflow: nlp-engine-build.yml
token: ${{ secrets.GITHUB_TOKEN }}
repo: VisualText/nlp-engine-linux
ref: main

- name: Trigger nlp-engine-mac workflow
uses: benc-uk/workflow-dispatch@v1
with:
workflow: nlp-engine-build.yml
token: ${{ secrets.GITHUB_TOKEN }}
repo: VisualText/nlp-engine-mac
ref: main

0 comments on commit 4950c92

Please sign in to comment.