Skip to content

Commit

Permalink
Fix go mod
Browse files Browse the repository at this point in the history
  • Loading branch information
academo committed Nov 26, 2024
1 parent a1ac633 commit 8b59a71
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Magefile.go
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ func Deploy() error {
return err
}
err = sh.Run("docker", "buildx", "build",
"--platform", "linux/amd64,linux/arm64", // Build for both AMD64 and ARM64
"--platform", "linux/amd64,linux/arm64,darwin/arm64", // Build for both AMD64 and ARM64
"-t", "academo/grafana-ntfy:"+version,
"-t", "academo/grafana-ntfy:latest",
"--push", // Push all tags at once
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/academo/grafana-alerting-ntfy-webhook-integration

go 1.23.3
go 1.23

require (
github.com/AlecAivazis/survey/v2 v2.3.7
Expand Down

0 comments on commit 8b59a71

Please sign in to comment.