File size: 654 Bytes
29c9ba5 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
# Creating a New Release
In order to create a new release:
1. Navigate to the [Fairseq Workflows](https://github.com/facebookresearch/fairseq/actions) and find the one named _Fairseq Release_.
2. Under _Run Workflow_ choose the branch `main` and for _Release Type_ enter either `major`, `minor`, or `patch`.
3. A branch named `$new_version-release` will be created where the `version.txt` file is updated. Merge those changes into `main`.
4. Make sure that a [new PYPI package](https://pypi.org/project/fairseq/) has been uploaded.
5. Make sure that a [new github release](https://github.com/facebookresearch/fairseq/releases) has been created.
|