Skip to content

Commit 95de1d8

Browse files
author
Robin Hermann
committed
feat: rename & add github action
1 parent 57b6626 commit 95de1d8

8 files changed

+8
-26
lines changed
71.3 KB
Binary file not shown.

KubernetesContextSwitcher.csproj

Lines changed: 0 additions & 18 deletions
This file was deleted.

Main.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
using System.Diagnostics;
33
using System.Text.Json;
44

5-
namespace KubernetesContextSwitcher;
5+
namespace Flow.Launcher.Plugin.KubernetesContextSwitcher;
66

77
public class Main : IPlugin
88
{

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ If you encounter permission issues:
122122
### Project Structure
123123

124124
```
125-
KubernetesContextSwitcher/
125+
flow-launcher-k8s-context-switcher/
126126
├── Main.cs # Main plugin logic
127127
├── plugin.json # Plugin manifest
128128
├── KubernetesContextSwitcher.csproj # Project file

create-release.ps1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@ Write-Host "Creating release package in: $releaseDir" -ForegroundColor Yellow
3131
$buildDir = "bin\Release\net7.0-windows7.0"
3232

3333
# Copy DLL and dependencies
34-
Copy-Item -Path "$buildDir\KubernetesContextSwitcher.dll" -Destination $releaseDir -Force
35-
Copy-Item -Path "$buildDir\KubernetesContextSwitcher.deps.json" -Destination $releaseDir -Force
34+
Copy-Item -Path "$buildDir\Flow.Launcher.Plugin.KubernetesContextSwitcher.dll" -Destination $releaseDir -Force
35+
Copy-Item -Path "$buildDir\Flow.Launcher.Plugin.KubernetesContextSwitcher.deps.json" -Destination $releaseDir -Force
3636

3737
# Copy plugin.json
3838
Copy-Item -Path "plugin.json" -Destination $releaseDir -Force

deploy-plugin.ps1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,8 @@ New-Item -ItemType Directory -Path $pluginsDir -Force | Out-Null
4040
Write-Host "Copying files..." -ForegroundColor Yellow
4141

4242
# Copy built DLL and dependencies
43-
Copy-Item -Path "$buildDir\KubernetesContextSwitcher.dll" -Destination $pluginsDir -Force
44-
Copy-Item -Path "$buildDir\KubernetesContextSwitcher.deps.json" -Destination $pluginsDir -Force
43+
Copy-Item -Path "$buildDir\Flow.Launcher.Plugin.KubernetesContextSwitcher.dll" -Destination $pluginsDir -Force
44+
Copy-Item -Path "$buildDir\Flow.Launcher.Plugin.KubernetesContextSwitcher.deps.json" -Destination $pluginsDir -Force
4545

4646
# Copy plugin.json
4747
Copy-Item -Path "$sourceDir\plugin.json" -Destination $pluginsDir -Force

plugin.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@
88
"Language": "csharp",
99
"Website": "https://github.com/r-studio/flow-launcher-k8s-context-switcher",
1010
"IcoPath": "Images/k8s.png",
11-
"ExecuteFileName": "KubernetesContextSwitcher.dll",
11+
"ExecuteFileName": "Flow.Launcher.Plugin.KubernetesContextSwitcher.dll",
1212
"Disabled": false
1313
}

plugins-manifest-entry.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"Language": "csharp",
88
"Website": "https://github.com/r-studio/flow-launcher-k8s-context-switcher",
99
"IcoPath": "Images/k8s.png",
10-
"ExecuteFileName": "KubernetesContextSwitcher.dll",
10+
"ExecuteFileName": "Flow.Launcher.Plugin.KubernetesContextSwitcher.dll",
1111
"ActionKeyword": "k8s",
1212
"Repository": "https://github.com/r-studio/flow-launcher-k8s-context-switcher",
1313
"ReleaseApi": "https://api.github.com/repos/r-studio/flow-launcher-k8s-context-switcher/releases/latest"

0 commit comments

Comments
 (0)