diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index a536d67..88c2568 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -1,4 +1,4 @@ -name: Build Warrant Edge Agent +name: Build Edge Agent on: push: diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 4b2a13d..24cd226 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -1,4 +1,4 @@ -name: Release Warrant Edge Agent +name: Release Edge Agent on: push: diff --git a/.goreleaser.yaml b/.goreleaser.yaml index 026741d..6d45efb 100644 --- a/.goreleaser.yaml +++ b/.goreleaser.yaml @@ -18,7 +18,7 @@ builds: ldflags: - -s -w -X main.version={{.Version}} -X main.commit={{.Commit}} -X main.date={{.Date}} archives: - - format: tar.gz + - formats: [ 'tar.gz' ] name_template: >- {{ .ProjectName }}_ {{- title .Os }}_ @@ -29,7 +29,7 @@ archives: # use zip for windows archives format_overrides: - goos: windows - format: zip + formats: [ 'zip' ] checksum: name_template: 'checksums.txt' snapshot: diff --git a/NOTICE b/NOTICE index 59fc975..bd5fe3a 100644 --- a/NOTICE +++ b/NOTICE @@ -1,4 +1,4 @@ -Warrant Edge Agent +WorkOS Edge Agent Copyright 2024 WorkOS, Inc. This product includes software developed at diff --git a/cmd/edge-agent/main.go b/cmd/edge-agent/main.go index e8346b6..fdd1681 100644 --- a/cmd/edge-agent/main.go +++ b/cmd/edge-agent/main.go @@ -19,7 +19,7 @@ import ( "log" "os" - "github.com/warrant-dev/edge" + "github.com/workos/edge-agent" "github.com/spf13/viper" ) diff --git a/go.mod b/go.mod index 02735b7..ba14dca 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module github.com/warrant-dev/edge +module github.com/workos/edge-agent go 1.23