Skip to content

Commit

Permalink
adjusted paths (#1155)
Browse files Browse the repository at this point in the history
  • Loading branch information
erinyoung authored Dec 27, 2024
1 parent bfecd9e commit 3d96d31
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/manual-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,17 +9,17 @@ on:
workflow_dispatch:
inputs:
tool:
description: "Tool to test. Must match filepath: /<tool>/version/Dockerfile"
description: "Tool to test. Must match filepath: /build-files/<tool>/version/Dockerfile"
required: true
version:
description: "Version to test. Must match filepath: /tool/<version>/Dockerfile"
description: "Version to test. Must match filepath: /build-files/tool/<version>/Dockerfile"
required: true

jobs:
# This job calls a workflow to build the image to the 'test' stage
build-to-test:
uses: ./.github/workflows/build-to-test.yml
with:
path_to_context: "./${{ github.event.inputs.tool }}/${{ github.event.inputs.version }}"
path_to_context: "./build-files/${{ github.event.inputs.tool }}/${{ github.event.inputs.version }}"
dockerfile_name: "Dockerfile"
cache: ${{ github.event.inputs.tool }}

0 comments on commit 3d96d31

Please sign in to comment.