Skip to content

Commit

Permalink
fix: workflow_dispatch with versions
Browse files Browse the repository at this point in the history
  • Loading branch information
wdconinc authored May 14, 2024
1 parent 1bcc53a commit e89418d
Showing 1 changed file with 17 additions and 3 deletions.
20 changes: 17 additions & 3 deletions .github/workflows/build-push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,20 @@ name: build-push

on:
push:
workflow_dispatch:
inputs:
EDM4EIC_VERSION:
required: false
default: ''
type: string
EICRECON_VERSION:
required: false
default: ''
type: string
JUGGLER_VERSION:
required: false
default: ''
type: string

concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
Expand All @@ -10,9 +24,9 @@ concurrency:
env:
## Default versions are specified in packages.yaml but can be overridden
## note: nightly builds will always use the master/main branch
EDM4EIC_VERSION: ""
EICRECON_VERSION: ""
JUGGLER_VERSION: ""
EDM4EIC_VERSION: ${{ inputs.EDM4EIC_VERSION }}
EICRECON_VERSION: ${{ inputs.EICRECON_VERSION }}
JUGGLER_VERSION: ${{ inputs.JUGGLER_VERSION }}

## Dockerhub registry
DH_REGISTRY: docker.io
Expand Down

0 comments on commit e89418d

Please sign in to comment.