Skip to content

Commit

Permalink
fix GH references
Browse files Browse the repository at this point in the history
  • Loading branch information
schlapzz committed May 30, 2023
1 parent be9f251 commit 6ac7a5b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ci/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 6ac7a5b

Please sign in to comment.