Skip to content

Commit d4f070e

Browse files
committed
Post-transfer update
1 parent 5718860 commit d4f070e

File tree

5 files changed

+6
-5
lines changed

5 files changed

+6
-5
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
shell: bash
2828
run: |
2929
VERSION="$(git describe --tags | cut -d '-' -f1 | cut -d 'v' -f2)"
30-
LDFLAGS="-X github.com/wandera/helm-github/main.Version=${VERSION}"
30+
LDFLAGS="-X github.com/jamf/helm-github/main.Version=${VERSION}"
3131
if [ "$GOOS" = "windows" ]; then
3232
go build -ldflags "${LDFLAGS}" -v -o dist/bin/helmgithub.exe
3333
else

CODEOWNERS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
* @jamf/delta-write

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module github.com/wandera/helm-github
1+
module github.com/jamf/helm-github
22

33
go 1.24.1
44

hack/install.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,8 @@ CYGWIN* | MINGW* | MSYS_NT*) os="windows" ;;
4747
;;
4848
esac
4949

50-
binary_url="https://github.com/wandera/helm-github/releases/download/v${version}/helm-github_${version}_${os}_${arch}.tar.gz"
51-
checksum_url="https://github.com/wandera/helm-github/releases/download/v${version}/helm-github_${version}_${os}_${arch}_checksum.txt"
50+
binary_url="https://github.com/jamf/helm-github/releases/download/v${version}/helm-github_${version}_${os}_${arch}.tar.gz"
51+
checksum_url="https://github.com/jamf/helm-github/releases/download/v${version}/helm-github_${version}_${os}_${arch}_checksum.txt"
5252

5353
mkdir -p "bin"
5454
mkdir -p "releases/v${version}"

main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import (
1313
"time"
1414

1515
"github.com/google/go-github/v45/github"
16-
"github.com/wandera/helm-github/helm"
16+
"github.com/jamf/helm-github/helm"
1717
"golang.org/x/oauth2"
1818
"sigs.k8s.io/yaml"
1919
)

0 commit comments

Comments
 (0)