Skip to content

Commit

Permalink
ci: allow to provide refName
Browse files Browse the repository at this point in the history
  • Loading branch information
melekes committed Jan 30, 2025
1 parent eccae12 commit 1dc26d2
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,11 @@
name: Docker testing image
on:
workflow_dispatch:
inputs:
refName:
description: 'Git ref name'
required: true
default: 'v0.14.x'
push:
branches:
- main
Expand Down Expand Up @@ -61,4 +66,6 @@ jobs:
file: ./tools/Dockerfile
platforms: linux/amd64
push: ${{ github.event_name != 'pull_request' }}
tags: ${{ steps.prep.outputs.tags }}
tags: |
${{ steps.prep.outputs.tags }}
cometbft/cometbft-db-testing:${{ github.event.inputs.refName }}

0 comments on commit 1dc26d2

Please sign in to comment.