Skip to content

Commit 0f579ed

Browse files
committed
fix: correct tag issue when publishing to docker
1 parent 444d212 commit 0f579ed

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/publish-docker-image.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,13 +40,13 @@ jobs:
4040
runs-on: ubuntu-latest
4141

4242
env:
43-
DEBUG: ${{ github.event.inputs.dryRun == 'yes'}}
43+
DEBUG: ${{ inputs.dryRun == 'yes'}}
4444

4545
steps:
4646
- name: Checkout repository
4747
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5
4848
with:
49-
ref: ${{ github.event.inputs.ref || github.ref }}
49+
ref: ${{ inputs.ref || github.ref }}
5050

5151
- name: CSpell Version
5252
run: |

0 commit comments

Comments
 (0)