mirror of
https://github.com/goreleaser/goreleaser.git
synced 2025-04-04 22:14:28 +02:00
34 lines
755 B
Markdown
34 lines
755 B
Markdown
|
# Build does not contain a main function
|
||
|
|
||
|
This usually happens if you're trying to build a library or if you didn't setup the `builds.main` section in your `.goreleaser.yml` and you `main.go` is not in the root folder.
|
||
|
|
||
|
Here's an example error:
|
||
|
|
||
|
```sh
|
||
|
⨯ build failed after 0.11s error=build for foo does not contain a main function
|
||
|
|
||
|
Learn more at https://goreleaser.com/errors/no-main
|
||
|
```
|
||
|
|
||
|
## If you are building a library
|
||
|
|
||
|
Add something like this to your config:
|
||
|
|
||
|
```yaml
|
||
|
# .goreleaser.yml
|
||
|
builds:
|
||
|
- skip: true
|
||
|
```
|
||
|
|
||
|
## If your `main.go` is not in the root folder
|
||
|
|
||
|
Add something like this to your config:
|
||
|
|
||
|
```yaml
|
||
|
# .goreleaser.yml
|
||
|
builds:
|
||
|
- main: ./path/to/your/main/pkg/
|
||
|
```
|
||
|
|
||
|
For more info, check the [builds documentation](/customization/build/).
|