From 9bf67ab8de028055f7db14cb227b62b74b31af78 Mon Sep 17 00:00:00 2001 From: Tera Date: Sun, 22 Sep 2024 00:06:47 +0000 Subject: [PATCH] fix: Fixes release failures in GitHub workflows. Oh my god I'm an idiot --- .github/workflows/release.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index c020d3b..9a5e383 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -83,7 +83,7 @@ jobs: files: | LICENSE docker-compose.yml - repository: greysoh/nextnet + repository: imterah/nextnet token: ${{ secrets.GITHUB_TOKEN }} tag_name: ${{ steps.get_version.outputs.version }} @@ -96,15 +96,15 @@ jobs: - name: Build all docker images run: | - docker build ./api --tag ghcr.io/greysoh/nextnet:$(cat VERSION) - docker build ./lom --tag ghcr.io/greysoh/nextnet-lom:$(cat VERSION) + docker build ./api --tag ghcr.io/imterah/nextnet:$(cat VERSION) + docker build ./lom --tag ghcr.io/imterah/nextnet-lom:$(cat VERSION) - name: Publish all docker images run: | - 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/nextnet:latest + docker tag ghcr.io/imterah/nextnet:$(cat VERSION) ghcr.io/imterah/nextnet:latest + docker push ghcr.io/imterah/nextnet:$(cat VERSION) + docker push ghcr.io/imterah/nextnet: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 \ No newline at end of file + docker push ghcr.io/greysoh/nextnet-lom:latest