Skip to content

Commit

Permalink
build(ci): ability to skip release verification for dev builds
Browse files Browse the repository at this point in the history
  • Loading branch information
theborakompanioni committed Oct 31, 2024
1 parent d108ac5 commit 1558f87
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 1 deletion.
6 changes: 6 additions & 0 deletions .github/workflows/create-and-publish-docker-dev-manually.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,11 @@ on:
required: true
default: 'master'
type: string
verify_release:
description: 'enable or disable release verification'
required: true
default: false
type: boolean

jobs:
image-manually:
Expand All @@ -26,3 +31,4 @@ jobs:
ui_repo_ref: ${{ github.event.inputs.ui_repo_ref }}
server_repo_ref: ${{ github.event.inputs.server_repo_ref }}
image_name_prefix: joinmarket-webui/jam-dev-
verify_release: ${{ github.event.inputs.verify_release }}
8 changes: 7 additions & 1 deletion .github/workflows/create-and-publish-docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,14 @@ on:
required: true
type: string
image_name_prefix:
description: 'image name prefix: e.g. joinmarket-webui/jam-'
description: 'image name prefix (e.g. joinmarket-webui/jam-)'
required: true
type: string
verify_release:
description: 'enable or disable release verification'
required: false
default: true
type: boolean

env:
REGISTRY: ghcr.io
Expand Down Expand Up @@ -72,3 +77,4 @@ jobs:
build-args: |
JAM_REPO_REF=${{ inputs.ui_repo_ref }}
JM_SERVER_REPO_REF=${{ inputs.server_repo_ref }}
VERIFY_RELEASE=${{ inputs.verify_release }}

0 comments on commit 1558f87

Please sign in to comment.