Skip to content

Commit f74c965

Browse files
author
lduktus
committedJun 12, 2024·
Trying to fix build path
see: redhat-actions/buildah-build#134
1 parent 29b69a6 commit f74c965

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed
 

‎.github/workflows/main.yaml

+4-4
Original file line numberDiff line numberDiff line change
@@ -13,23 +13,23 @@ jobs:
1313
build_svc_languagetool:
1414
uses: ./.github/workflows/reusable-workflow.yaml
1515
with:
16-
context: svc-languagetool
16+
context: ./svc-languagetool
1717
image_name: svc-languagetool
1818

1919
build_svc_openrefine:
2020
uses: ./.github/workflows/reusable-workflow.yaml
2121
with:
22-
context: svc-openrefine
22+
context: ./svc-openrefine
2323
image_name: svc-openrefine
2424

2525
build_box_qgis:
2626
uses: ./.github/workflows/reusable-workflow.yaml
2727
with:
28-
context: box-qgis
28+
context: ./box-qgis
2929
image_name: box-qgis
3030

3131
build_box_zotero:
3232
uses: ./.github/workflows/reusable-workflow.yaml
3333
with:
34-
context: box-zotero
34+
context: ./box-zotero
3535
image_name: box-zotero

‎.github/workflows/reusable-workflow.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,11 @@ jobs:
2626
with:
2727
image: ${{ inputs.image_name }}
2828
tags: latest ${{ github.sha }}
29-
context: ${{ inputs.context }}
29+
# context: ${{ inputs.context }}
3030
labels: |
3131
org.opencontainers.image.source=${{ github.server_url }}/${{ github.repository }}
3232
containerfiles: |
33-
Containerfile
33+
${{ inputs.context }}/Containerfile
3434
- name: Push To Registry
3535
id: push-image
3636
uses: redhat-actions/push-to-registry@v2.8

0 commit comments

Comments
 (0)
Please sign in to comment.