summaryrefslogtreecommitdiff
path: root/docs/src/gettingstarted/building/release.md
blob: 5c5e4e1ecd6a8af81a0593138f53ad4974e794d7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# Building for release

To build for release, make sure you obtain the tarball artifacts in the release (ending with `.tar.xz`) at <https://codeberg.org/eduVPN/eduvpn-common/releases>.

These are signed with minisign and gpg keys, make sure to verify these signatures using the public keys available here: <https://codeberg.org/eduVPN/eduvpn-common/src/branch/main/keys>, they are also available externally:
- <https://app.eduvpn.org/linux/v4/deb/app+linux@eduvpn.org.asc>
- <https://git.sr.ht/~jwijenbergh/python3-eduvpn-common.rpm/tree/main/item/SOURCES/minisign-CA9409316AC93C07.pub>

To build for release, make sure to extract the tarball, and then add `-tags=release` to the `GOFLAGS` environment variable:

```bash
GOFLAGS="-tags=release" make
```

Proceed the build like normally.