Skip to content

Commit 0af8f2b

Browse files
committed
feat: Switch to new repository
1 parent 8f3b9bd commit 0af8f2b

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
github-token: ${{ secrets.GITHUB_TOKEN }}
4444
ghr: true
4545
- run: |
46-
gox -parallel 4 -osarch="linux/amd64 linux/arm64 darwin/amd64 darwin/arm64 linux/arm windows/amd64" -ldflags="-extldflags '-static' -s -w -X git.shivering-isles.com/sheogorath/files-updater-helm/pkg/updater.FUVERSION=${{steps.semrel.outputs.version}}" -output="bin/{{.Dir}}_v${{steps.semrel.outputs.version}}_{{.OS}}_{{.Arch}}" ./cmd/files-updater-helm/
46+
gox -parallel 4 -osarch="linux/amd64 linux/arm64 darwin/amd64 darwin/arm64 linux/arm windows/amd64" -ldflags="-extldflags '-static' -s -w -X github.com/go-semantic-release/files-updater-helm/pkg/updater.FUVERSION=${{steps.semrel.outputs.version}}" -output="bin/{{.Dir}}_v${{steps.semrel.outputs.version}}_{{.OS}}_{{.Arch}}" ./cmd/files-updater-helm/
4747
cd bin/ && shasum -a 256 * > ./files-updater-helm_v${{steps.semrel.outputs.version}}_checksums.txt && cd -
4848
if: steps.semrel.outputs.version != ''
4949
env:

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# :open_file_folder: files-updater-helm
2-
[![Go Report Card](https://goreportcard.com/badge/git.shivering-isles.com/sheogorath/files-updater-helm)](https://goreportcard.com/report/git.shivering-isles.com/sheogorath/files-updater-helm)
3-
[![PkgGoDev](https://pkg.go.dev/badge/git.shivering-isles.com/sheogorath/files-updater-helm)](https://pkg.go.dev/git.shivering-isles.com/sheogorath/files-updater-helm)
2+
[![Go Report Card](https://goreportcard.com/badge/github.com/go-semantic-release/files-updater-helm)](https://goreportcard.com/report/github.com/go-semantic-release/files-updater-helm)
3+
[![PkgGoDev](https://pkg.go.dev/badge/github.com/go-semantic-release/files-updater-helm)](https://pkg.go.dev/github.com/go-semantic-release/files-updater-helm)
44

55
The helm chart files updater for [go-semantic-release](https://github.com/go-semantic-release/semantic-release).
66

cmd/files-updater-helm/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package main
22

33
import (
4-
helmUpdater "git.shivering-isles.com/sheogorath/files-updater-helm/pkg/updater"
4+
helmUpdater "github.com/go-semantic-release/files-updater-helm/pkg/updater"
55
"github.com/go-semantic-release/semantic-release/v2/pkg/plugin"
66
"github.com/go-semantic-release/semantic-release/v2/pkg/updater"
77
)

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module git.shivering-isles.com/sheogorath/files-updater-helm
1+
module github.com/go-semantic-release/files-updater-helm
22

33
go 1.16
44

0 commit comments

Comments
 (0)