Skip to content

Commit

Permalink
Merge pull request #14 from hiddenshadow21/docker-repo-fix
Browse files Browse the repository at this point in the history
Add docker repository as separate parameter
  • Loading branch information
gregolsky authored Oct 3, 2024
2 parents e847124 + 72ad8ce commit 9dc1c0b
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,11 @@ on:
required: false
type: string
default: ravendb/ravendb
docker_repository:
description: 'Docker repository'
required: false
type: string
default: ravendb/ravendb
deb_only:
description: 'Build deb packages only'
required: false
Expand All @@ -33,7 +38,7 @@ env:
IS_STABLE: ${{ ! contains(inputs.version, '-') }}
IS_NIGHTLY: ${{ contains(inputs.version, 'nightly') }}
DOCKER_USER: ${{ inputs.docker_user }}
DOCKER_REPO: '${{ inputs.docker_user }}/ravendb'
DOCKER_REPO: ${{ inputs.docker_repository }}
DRY_RUN: ${{ inputs.dry_run }}

jobs:
Expand Down

0 comments on commit 9dc1c0b

Please sign in to comment.