feature: Bump version to 1.0.0, and slightly rename stuff.

This commit is contained in:
greysoh 2024-05-10 08:59:13 -04:00
parent 98d5f18fef
commit 43153e75a1
3 changed files with 12 additions and 12 deletions

View file

@ -96,15 +96,15 @@ jobs:
- name: Build all docker images
run: |
docker build ./api --tag ghcr.io/greysoh/api:$(cat VERSION)
docker build ./lom --tag ghcr.io/greysoh/lom:$(cat VERSION)
docker build ./api --tag ghcr.io/greysoh/nextnet:$(cat VERSION)
docker build ./lom --tag ghcr.io/greysoh/nextnet-lom:$(cat VERSION)
- name: Publish all docker images
run: |
docker tag ghcr.io/greysoh/api:$(cat VERSION) ghcr.io/greysoh/api:latest
docker push ghcr.io/greysoh/api:$(cat VERSION)
docker push ghcr.io/greysoh/api:latest
docker tag ghcr.io/greysoh/nextnet:$(cat VERSION) ghcr.io/greysoh/nextnet:latest
docker push ghcr.io/greysoh/nextnet:$(cat VERSION)
docker push ghcr.io/greysoh/netxtnet:latest
docker tag ghcr.io/greysoh/lom:$(cat VERSION) ghcr.io/greysoh/lom:latest
docker push ghcr.io/greysoh/lom:$(cat VERSION)
docker push ghcr.io/greysoh/lom:latest
docker tag ghcr.io/greysoh/nextnet-lom:$(cat VERSION) ghcr.io/greysoh/nextnet-lom:latest
docker push ghcr.io/greysoh/nextnet-lom:$(cat VERSION)
docker push ghcr.io/greysoh/nextnet-lom:latest