Skip to content

Commit a895d89

Browse files
committed
fix: update repo context in GitHub Actions workflows
1 parent 4ee098b commit a895d89

File tree

3 files changed

+9
-3
lines changed

3 files changed

+9
-3
lines changed

.github/workflows/build-endpoint.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,8 @@ jobs:
2626
steps:
2727
- name: Checkout repository
2828
uses: actions/checkout@v4
29+
with:
30+
repository: 'City-of-Helsinki/mittaridatapumppu-endpoint'
2931
- name: Set up QEMU
3032
uses: docker/setup-qemu-action@v3
3133
- name: Set up Docker Buildx
@@ -53,7 +55,7 @@ jobs:
5355
- name: Build and push Docker image
5456
uses: docker/build-push-action@v5
5557
with:
56-
context: mittaridatapumppu-endpoint
58+
context: .
5759
platforms: linux/amd64,linux/arm64
5860
push: true
5961
tags: ${{ steps.meta.outputs.tags }}

.github/workflows/build-parser.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,8 @@ jobs:
2626
steps:
2727
- name: Checkout repository
2828
uses: actions/checkout@v4
29+
with:
30+
repository: 'City-of-Helsinki/mittaridatapumppu-parser'
2931
- name: Set up QEMU
3032
uses: docker/setup-qemu-action@v3
3133
- name: Set up Docker Buildx
@@ -53,7 +55,7 @@ jobs:
5355
- name: Build and push Docker image
5456
uses: docker/build-push-action@v5
5557
with:
56-
context: mittaridatapumppu-parser
58+
context: .
5759
platforms: linux/amd64,linux/arm64
5860
push: true
5961
tags: ${{ steps.meta.outputs.tags }}

.github/workflows/build-persister.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,8 @@ jobs:
2626
steps:
2727
- name: Checkout repository
2828
uses: actions/checkout@v4
29+
with:
30+
repository: 'City-of-Helsinki/mittaridatapumppu-persister'
2931
- name: Set up QEMU
3032
uses: docker/setup-qemu-action@v3
3133
- name: Set up Docker Buildx
@@ -53,7 +55,7 @@ jobs:
5355
- name: Build and push Docker image
5456
uses: docker/build-push-action@v5
5557
with:
56-
context: mittaridatapumppu-persister
58+
context: .
5759
platforms: linux/amd64,linux/arm64
5860
push: true
5961
tags: ${{ steps.meta.outputs.tags }}

0 commit comments

Comments
 (0)