Skip to content

Commit

Permalink
fix conditional & update defaults (#112)
Browse files Browse the repository at this point in the history
  • Loading branch information
emmyoop authored Apr 2, 2024
1 parent f7bc306 commit 772158d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release-docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ on:
test_run:
description: Test Run (don't publish)
type: boolean
default: false
default: true

workflow_call:
inputs:
Expand All @@ -47,7 +47,7 @@ on:
test_run:
description: Test Run (don't publish)
type: boolean
default: false
default: true

jobs:
version_metadata:
Expand Down Expand Up @@ -105,7 +105,7 @@ jobs:
echo Build Arg Value: ${{ steps.build_arg.outputs.value }}
- name: Build and push `${{ inputs.package }}`
if: ${{ !inputs.dry_run }}
if: ${{ !inputs.test_run }}
uses: docker/build-push-action@v5
with:
file: docker/Dockerfile
Expand Down

0 comments on commit 772158d

Please sign in to comment.