with proper location
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2022-11-06 16:23:04 +01:00
parent 3de2001d7e
commit 58f331b9ec
2 changed files with 2 additions and 2 deletions

View File

@@ -22,7 +22,7 @@ func Build(ctx context.Context, container *dagger.Container, binName string) (da
return "", err
}
bin, err := c.File(fmt.Sprintf("target/release/%s", binName)).ID(ctx)
bin, err := c.File(fmt.Sprintf("target/x86_64-unknown-linux-musl/release/%s", binName)).ID(ctx)
if err != nil {
return "", err
}