Skip to content

Commit

Permalink
Make image tag customizable
Browse files Browse the repository at this point in the history
JCGoran committed Dec 4, 2024
1 parent 0b6ceb5 commit 0e6433d
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/wheel_image.yml
Original file line number Diff line number Diff line change
@@ -18,6 +18,11 @@ on:
required: true
type: 'boolean'

tag:
description: 'The tag for the final Docker image'
default: 'latest'
required: true

jobs:
docker:
runs-on: ubuntu-latest
@@ -47,6 +52,6 @@ jobs:
with:
platforms: ${{ matrix.platform }}
push: ${{ github.event.inputs.upload }}
tags: neuronsimulator/neuron_wheel:latest
tags: neuronsimulator/neuron_wheel:${{ github.event.inputs.tag }}
build-args: |
MANYLINUX_IMAGE: ${{ github.event.inputs.base_image }}_${{ matrix.arch }}

0 comments on commit 0e6433d

Please sign in to comment.