Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update release procedure instructions #608

Merged
merged 1 commit into from
Sep 18, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions docs/guides/developerGuide.md
Original file line number Diff line number Diff line change
Expand Up @@ -366,20 +366,21 @@ branch and push the changes to github.
build the production images and generate the user production .zip by running
`bash release/generate_production_release.sh`. This will:

- Create local lab, machine, and dbmongo production docker images with the
- Create lab, machine, and dbmongo production docker images with the
tag defined in the .env file
- Create the production .zip named `target/production/Aliro-${VERSION}.zip`
- Build multi-architecture (amd64, arm64) docker images using `buildx bake` and push the images to docker hub.

```bash
git checkout production
bash release/generate_production_release.sh
```

4. **Push docker images to DockerHub and tag the production git branch by
4. **Check that the docker images were pushed to DockerHub and tag the production git branch by
running `deploy_production_release.sh`.** While in the produciton branch, run
`bash release/deploy_production_release.sh`. This will:

- Push the production lab, machine and dbmongo production docker images to dockerHub
- Check that the production lab, machine and dbmongo production docker images exist in dockerHub
- Tag the production git branch with the version defined in `.env`

```bash
Expand Down
Loading