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.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
1 change: 1 addition & 0 deletions CODEOWNERS
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
* @jamf/delta-write
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/wandera/helm-github
module github.com/jamf/helm-github

go 1.24.1

Expand Down
4 changes: 2 additions & 2 deletions hack/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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}"
Expand Down
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"
)
Expand Down