From 8e1f578dcd3707ff5a9fd9b1359747e9aba73644 Mon Sep 17 00:00:00 2001 From: Andrew Steurer <94206073+asteurer@users.noreply.github.com> Date: Sat, 2 May 2026 12:55:57 -0500 Subject: [PATCH] fix: repo name Signed-off-by: Andrew Steurer <94206073+asteurer@users.noreply.github.com> --- .github/workflows/release.yaml | 2 +- cmd/root.go | 2 +- cmd/setup.go | 2 +- go.mod | 4 ++-- main.go | 2 +- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index fe38b49..0adb4f2 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -106,7 +106,7 @@ jobs: run: ls -R - name: pluginify it run: | - spin pluginify --merge --release-url-base https://github.com/fermyon/otel-plugin/releases/download/${{ env.RELEASE_VERSION }}/ >${{ env.PROGRAM_NAME }}.json + spin pluginify --merge --release-url-base https://github.com/spinframework/otel-plugin/releases/download/${{ env.RELEASE_VERSION }}/ >${{ env.PROGRAM_NAME }}.json - name: Display merged manifest run: cat ${{ env.PROGRAM_NAME }}.json - name: Archive Combined Manifest diff --git a/cmd/root.go b/cmd/root.go index 373f257..e82e3a1 100644 --- a/cmd/root.go +++ b/cmd/root.go @@ -7,8 +7,8 @@ import ( "path" "strings" - open "github.com/fermyon/otel-plugin/cmd/open" "github.com/spf13/cobra" + open "github.com/spinframework/otel-plugin/cmd/open" ) var rootCmd = &cobra.Command{ diff --git a/cmd/setup.go b/cmd/setup.go index 1ff5b0f..c5c41f6 100644 --- a/cmd/setup.go +++ b/cmd/setup.go @@ -6,8 +6,8 @@ import ( "os/exec" "path" - "github.com/fermyon/otel-plugin/internal/stack" "github.com/spf13/cobra" + "github.com/spinframework/otel-plugin/internal/stack" ) var ( diff --git a/go.mod b/go.mod index b155107..31f289d 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ -module github.com/fermyon/otel-plugin +module github.com/spinframework/otel-plugin -replace github.com/fermyon/otel-plugin => ../ +replace github.com/spinframework/otel-plugin => ../ go 1.22.4 diff --git a/main.go b/main.go index 68b333f..bc13b4a 100644 --- a/main.go +++ b/main.go @@ -1,7 +1,7 @@ package main import ( - "github.com/fermyon/otel-plugin/cmd" + "github.com/spinframework/otel-plugin/cmd" ) func main() {