diff --git a/ci/main.go b/ci/main.go index cbb5aa1..714217d 100644 --- a/ci/main.go +++ b/ci/main.go @@ -158,11 +158,11 @@ func buildAndRelease(client *dagger.Client, golang *dagger.Container, version st ghContainer := client.Container().From("ghcr.io/supportpal/github-gh-cli"). WithEnvVariable("GITHUB_TOKEN", accessToken). WithDirectory("/build", golang.Directory("build/")). - WithExec([]string{"gh", "-R", "schlapzz/goff", "release", "create", version}) + WithExec([]string{"gh", "-R", "puzzle/goff", "release", "create", version}) for _, f := range files { ghContainer = ghContainer. - WithExec([]string{"gh", "-R", "schlapzz/goff", "release", "upload", version, f}) + WithExec([]string{"gh", "-R", "puzzle/goff", "release", "upload", version, f}) } //Evaluate