diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index bb8fcc8..202a73d 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -11,22 +11,22 @@ permissions: jobs: build: - uses: ablockofficial/platform/.github/workflows/build.yml@main + uses: aiblockofficial/platform/.github/workflows/build.yml@main with: REGISTRY: ${{ vars.REGISTRY }} REPOSITORY: ${{ vars.REPOSITORY }} scan-image: - uses: ablockofficial/platform/.github/workflows/scan-image.yml@main + uses: aiblockofficial/platform/.github/workflows/scan-image.yml@main secrets: inherit needs: build with: IMAGE: ${{ vars.REGISTRY }}/${{ vars.REPOSITORY }}:${{ github.sha }} deploy: - uses: ablockofficial/platform/.github/workflows/deploy.yml@main + uses: aiblockofficial/platform/.github/workflows/deploy.yml@main secrets: inherit needs: scan-image with: REGION: ${{ vars.REGION }} PROJECT_ID: ${{ vars.PROJECT_ID }} CLUSTER_NAME: ${{ vars.CLUSTER_NAME }} - DEPLOYMENT: a-block-io \ No newline at end of file + DEPLOYMENT: aiblock-dev \ No newline at end of file diff --git a/Dockerfile b/Dockerfile index 9f34daf..acd0348 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ FROM cgr.dev/chainguard/node@sha256:4a8f2fb37f0d2b34460f1a86f106c504954917561a50af1fa310f615709079d1 as build -WORKDIR /a-block +WORKDIR /aiblock # Copy and build dependancies first COPY package.json yarn.lock ./ @@ -14,4 +14,4 @@ RUN yarn build FROM cgr.dev/chainguard/nginx:latest # Copy built statc files to nginx www root -COPY --from=build /a-block/build/ /usr/share/nginx/html/. \ No newline at end of file +COPY --from=build /aiblock/build/ /usr/share/nginx/html/. \ No newline at end of file