Skip to content

Commit

Permalink
ci(build): try context path for docker build step (#32)
Browse files Browse the repository at this point in the history
* 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
  • Loading branch information
mmpetarpeshev authored Sep 6, 2022
1 parent 48e11f6 commit e0ea337
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/prod-pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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') }}
Expand All @@ -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 }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/staging-pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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 }}
Expand Down

0 comments on commit e0ea337

Please sign in to comment.