We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f3988f8 commit b4d99f7Copy full SHA for b4d99f7
2 files changed
.github/workflows/ci.yml
@@ -160,6 +160,8 @@ jobs:
160
PYTHON_VER=${{ env.PYTHON_VER }}
161
- name: "Debug: Show docker images"
162
run: "docker image ls"
163
+ - name: "Expose the Docker tag"
164
+ run: "echo INVOKE_PARSER_DOCKER_TAG=${{ env.INVOKE_PARSER_IMAGE_NAME }}:${{ env.INVOKE_PARSER_IMAGE_VER }}-py${{ matrix.python-version }} >> $GITHUB_ENV"
165
- name: "Run Tests"
166
run: "poetry run invoke pytest"
167
needs:
tasks.py
@@ -38,7 +38,7 @@ def is_truthy(arg):
38
"python_ver": "3.9",
39
"local": is_truthy(os.getenv("INVOKE_PARSER_LOCAL", "false")),
40
"image_name": "circuit_maintenance_parser",
41
- "image_ver": "latest",
+ "image_ver": os.getenv("INVOKE_PARSER_IMAGE_VER", "latest"),
42
"pwd": ".",
43
}
44
0 commit comments