Skip to content

Commit

Permalink
App release instructions (#821)
Browse files Browse the repository at this point in the history
  • Loading branch information
bpierre authored Feb 4, 2025
1 parent 33da570 commit 93e53f0
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions frontend/app/RELEASING.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
# Releasing the app

These are the steps to follow when releasing a new version of the app.

Make sure you are in the `frontend/app` directory, and replace `[version]` with the new version number in the following commands:

```bash
# switch to the main branch
git switch main

# pull the latest changes
git pull origin main

# make sure the app builds without errors
pnpm build

# update the app version number (no v prefix)
pnpm version [version]

# commit the version change
git add package.json
git commit -m "App: v[version]"

# created a signed tag for the new version
git tag -s @liquity2/app-v[version] -m '@liquity2/app-v[version]'

# push the version change and the new tag
git push origin main
git push origin @liquity2/app-v[version]
```

Now, create a new GitHub release with the new tag (`@liquity2/app-v[version]`). The release should include a summary of the changes in the new version, following the format used in previous releases if possible.

0 comments on commit 93e53f0

Please sign in to comment.