Skip to content

Commit b4d99f7

Browse files
committed
use different docker versions
1 parent f3988f8 commit b4d99f7

2 files changed

Lines changed: 3 additions & 1 deletion

File tree

.github/workflows/ci.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -160,6 +160,8 @@ jobs:
160160
PYTHON_VER=${{ env.PYTHON_VER }}
161161
- name: "Debug: Show docker images"
162162
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"
163165
- name: "Run Tests"
164166
run: "poetry run invoke pytest"
165167
needs:

tasks.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ def is_truthy(arg):
3838
"python_ver": "3.9",
3939
"local": is_truthy(os.getenv("INVOKE_PARSER_LOCAL", "false")),
4040
"image_name": "circuit_maintenance_parser",
41-
"image_ver": "latest",
41+
"image_ver": os.getenv("INVOKE_PARSER_IMAGE_VER", "latest"),
4242
"pwd": ".",
4343
}
4444
}

0 commit comments

Comments
 (0)