From e0ea337af4931fb62470721085e8cd4426ebf02d Mon Sep 17 00:00:00 2001 From: Petar Peshev <42840513+mmpetarpeshev@users.noreply.github.com> Date: Tue, 6 Sep 2022 16:41:37 +0300 Subject: [PATCH] ci(build): try context path for docker build step (#32) * ci(build): try context path for docker build step * ci(build): try context path for docker build step * ci(build): change dockerhub repo to match the secrets --- .github/workflows/prod-pipeline.yml | 4 ++-- .github/workflows/staging-pipeline.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/prod-pipeline.yml b/.github/workflows/prod-pipeline.yml index b165dc2..0538495 100644 --- a/.github/workflows/prod-pipeline.yml +++ b/.github/workflows/prod-pipeline.yml @@ -65,7 +65,7 @@ jobs: id: meta uses: docker/metadata-action@v3 with: - images: aeternity/aerepl_http + images: aeternitybot/aerepl_http tags: | type=raw,value=latest,enable=${{ endsWith(GitHub.ref, 'master') }} type=raw,value=master,enable=${{ endsWith(GitHub.ref, 'master') }} @@ -80,7 +80,7 @@ jobs: uses: docker/build-push-action@v2 with: context: . - file: Dockerfile + file: ./Dockerfile push: true tags: ${{ steps.meta.outputs.tags }} labels: ${{ steps.meta.outputs.labels }} diff --git a/.github/workflows/staging-pipeline.yml b/.github/workflows/staging-pipeline.yml index 32192ad..290f95a 100644 --- a/.github/workflows/staging-pipeline.yml +++ b/.github/workflows/staging-pipeline.yml @@ -48,7 +48,7 @@ jobs: id: meta uses: docker/metadata-action@v3 with: - images: aeternity/aerepl_http + images: aeternitybot/aerepl_http tags: | type=raw,value=latest,enable=${{ endsWith(GitHub.ref, 'master') }} type=ref,event=tag @@ -66,7 +66,7 @@ jobs: uses: docker/build-push-action@v2 with: context: . - file: Dockerfile + file: ./Dockerfile push: true tags: ${{ steps.meta.outputs.tags }} labels: ${{ steps.meta.outputs.labels }}