Skip to content
Merged
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/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion cmd/root.go
Original file line number Diff line number Diff line change
Expand Up @@ -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{
Expand Down
2 changes: 1 addition & 1 deletion cmd/setup.go
Original file line number Diff line number Diff line change
Expand Up @@ -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 (
Expand Down
4 changes: 2 additions & 2 deletions go.mod
Original file line number Diff line number Diff line change
@@ -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

Expand Down
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package main

import (
"github.com/fermyon/otel-plugin/cmd"
"github.com/spinframework/otel-plugin/cmd"
)

func main() {
Expand Down
Loading