We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4389fb3 commit ff2b089Copy full SHA for ff2b089
.github/workflows/python-builder.yml
@@ -7,6 +7,7 @@ on:
7
inputs:
8
docker-tag:
9
description: 'Docker tag for push (e.g. 2.0.0)'
10
+ default: 'latest'
11
required: true
12
13
env:
@@ -34,5 +35,5 @@ jobs:
34
35
- name: Build and push
36
working-directory: ./python-builder/
37
run: |
- make DOCKER_IMAGE_VERSION=0.9 build_docker_image
38
- make DOCKER_IMAGE_VERSION=0.9 push_to_registry
+ make DOCKER_IMAGE_VERSION="${{ github.event.inputs.docker-tag }}" build_docker_image
39
+ make DOCKER_IMAGE_VERSION="${{ github.event.inputs.docker-tag }}" push_to_registry
0 commit comments