You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The arroyo image (`ghcr.io/projectasap/asap-arroyo`) is published separately from the [ProjectASAP/arroyo](https://github.com/ProjectASAP/arroyo) repo using the same process.
25
+
26
+
## Coordinating with the arroyo repo
27
+
28
+
The quickstart docker-compose pins specific image versions. When cutting a release, tag both repos with the same version and update the quickstart compose file to reference the new tags.
29
+
30
+
```bash
31
+
# In this repo
32
+
git tag v0.2.0 && git push origin v0.2.0
33
+
34
+
# In ProjectASAP/arroyo
35
+
git tag v0.2.0 && git push origin v0.2.0
36
+
```
37
+
38
+
Then update the image tags in `asap-quickstart/` to `v0.2.0`.
39
+
40
+
## If you need to delete a bad tag
41
+
42
+
```bash
43
+
git tag -d v0.2.0
44
+
git push origin :refs/tags/v0.2.0
45
+
```
46
+
47
+
Then delete the package version manually in the GitHub UI under `github.com/orgs/ProjectASAP/packages` if images were already pushed.
0 commit comments