Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

RunScript(script, echo) is not printing #41

Closed
wants to merge 3 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ghuserbuild.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
source: GH\PyGH\components
target: GH\PyGH\build

- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v4
with:
name: ghuser-components
path: GH\PyGH\build
12 changes: 6 additions & 6 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ jobs:
run: invoke yakerize

- name: Save artifact
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: scriptsync_yak_package
path: yaker\build\*.yak
Expand All @@ -121,7 +121,7 @@ jobs:
ref: main

- name: Download artifact
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4
with:
name: scriptsync_yak_package
path: yaker\build
Expand Down Expand Up @@ -191,7 +191,7 @@ jobs:
vsce package

- name: Save artifact
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: script-sync-vsix
path: VSCode/scriptsync/*.vsix
Expand Down Expand Up @@ -232,7 +232,7 @@ jobs:
npm install @types/mocha --save-dev

- name: Download artifact
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4
with:
name: script-sync-vsix
path: VSCode\scriptsync
Expand Down Expand Up @@ -261,13 +261,13 @@ jobs:
ref: main

- name: Download Yak artifact
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4
with:
name: scriptsync_yak_package
path: yaker/build

- name: Download VSIX artifact
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4
with:
name: script-sync-vsix
path: VSCode/scriptsync
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/rhinoplugin.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
run: dotnet build ./CsRhino/ScriptSync.csproj --configuration Release --no-restore

- name: Save artifact
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: ScriptSync.rhp
path: ./CsRhino/bin/Release/net48/
2 changes: 1 addition & 1 deletion .github/workflows/vscodeext.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
vsce package

- name: Save artifact
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: script-sync
path: VSCode/scriptsync/*.vsix
2 changes: 1 addition & 1 deletion .github/workflows/yakbuild.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
run: invoke yakerize

- name: Save artifact
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: scriptsync_yak_package
path: yaker/build/*.yak
1 change: 1 addition & 0 deletions CsRhino/ScriptSyncStart.cs
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,7 @@ public void Run()
{
try
{
RhinoApp.WriteLine("ScriptSync Running: " + scriptPath);
RhinoApp.RunScript("_-ScriptEditor Run " + scriptPath, true);
}
catch (Exception e)
Expand Down
Loading