Skip to content

Commit

Permalink
fix: update repo context in GitHub Actions workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
laurigates committed May 29, 2024
1 parent 4ee098b commit a895d89
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/build-endpoint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,8 @@ jobs:
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
repository: 'City-of-Helsinki/mittaridatapumppu-endpoint'
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
Expand Down Expand Up @@ -53,7 +55,7 @@ jobs:
- name: Build and push Docker image
uses: docker/build-push-action@v5
with:
context: mittaridatapumppu-endpoint
context: .
platforms: linux/amd64,linux/arm64
push: true
tags: ${{ steps.meta.outputs.tags }}
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/build-parser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,8 @@ jobs:
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
repository: 'City-of-Helsinki/mittaridatapumppu-parser'
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
Expand Down Expand Up @@ -53,7 +55,7 @@ jobs:
- name: Build and push Docker image
uses: docker/build-push-action@v5
with:
context: mittaridatapumppu-parser
context: .
platforms: linux/amd64,linux/arm64
push: true
tags: ${{ steps.meta.outputs.tags }}
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/build-persister.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,8 @@ jobs:
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
repository: 'City-of-Helsinki/mittaridatapumppu-persister'
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
Expand Down Expand Up @@ -53,7 +55,7 @@ jobs:
- name: Build and push Docker image
uses: docker/build-push-action@v5
with:
context: mittaridatapumppu-persister
context: .
platforms: linux/amd64,linux/arm64
push: true
tags: ${{ steps.meta.outputs.tags }}
Expand Down

0 comments on commit a895d89

Please sign in to comment.