diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index ec1b259..15f1507 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -27,7 +27,7 @@ jobs: shell: bash run: | VERSION="$(git describe --tags | cut -d '-' -f1 | cut -d 'v' -f2)" - LDFLAGS="-X github.com/wandera/helm-github/main.Version=${VERSION}" + LDFLAGS="-X github.com/jamf/helm-github/main.Version=${VERSION}" if [ "$GOOS" = "windows" ]; then go build -ldflags "${LDFLAGS}" -v -o dist/bin/helmgithub.exe else diff --git a/CODEOWNERS b/CODEOWNERS new file mode 100644 index 0000000..78df31b --- /dev/null +++ b/CODEOWNERS @@ -0,0 +1 @@ +* @jamf/delta-write diff --git a/go.mod b/go.mod index cc1e35f..e45435c 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module github.com/wandera/helm-github +module github.com/jamf/helm-github go 1.24.1 diff --git a/hack/install.sh b/hack/install.sh index 456364a..8e7e7f1 100755 --- a/hack/install.sh +++ b/hack/install.sh @@ -47,8 +47,8 @@ CYGWIN* | MINGW* | MSYS_NT*) os="windows" ;; ;; esac -binary_url="https://github.com/wandera/helm-github/releases/download/v${version}/helm-github_${version}_${os}_${arch}.tar.gz" -checksum_url="https://github.com/wandera/helm-github/releases/download/v${version}/helm-github_${version}_${os}_${arch}_checksum.txt" +binary_url="https://github.com/jamf/helm-github/releases/download/v${version}/helm-github_${version}_${os}_${arch}.tar.gz" +checksum_url="https://github.com/jamf/helm-github/releases/download/v${version}/helm-github_${version}_${os}_${arch}_checksum.txt" mkdir -p "bin" mkdir -p "releases/v${version}" diff --git a/main.go b/main.go index 86529f2..6c8bd43 100644 --- a/main.go +++ b/main.go @@ -13,7 +13,7 @@ import ( "time" "github.com/google/go-github/v45/github" - "github.com/wandera/helm-github/helm" + "github.com/jamf/helm-github/helm" "golang.org/x/oauth2" "sigs.k8s.io/yaml" )