Skip to content

Commit

Permalink
feature: Bump version to 1.0.0, and slightly rename stuff.
Browse files Browse the repository at this point in the history
  • Loading branch information
imterah committed May 10, 2024
1 parent 98d5f18 commit 43153e7
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 12 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.1.1
1.0.0
6 changes: 3 additions & 3 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
services:
nextnet-api:
image: ghcr.io/greysoh/api:latest
image: ghcr.io/greysoh/nextnet:latest
container_name: nextnet-api
restart: always
env_file:
Expand All @@ -11,8 +11,8 @@ services:
# NOTE: For this to work correctly, the nextnet-api must be version > 0.1.1
# or have a version with backported username support, incl. logins
nextnet-lom:
image: ghcr.io/greysoh/nextnet-ssh:latest
container_name: nextnet_api
image: ghcr.io/greysoh/nextnet-lom:latest
container_name: nextnet-lom
restart: always
ports:
- 2222:2222
Expand Down

0 comments on commit 43153e7

Please sign in to comment.