Skip to content

Commit

Permalink
Fix conditional logic
Browse files Browse the repository at this point in the history
  • Loading branch information
jfdoming committed Jan 8, 2025
1 parent 098d49e commit 8781184
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions .github/actions/setup/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,11 @@ inputs:
working-directory:
description: 'Working directory to run in, default .'
required: false
default: .
type: string
default: '.'
download-translations:
description: 'Whether to download translations as part of setup, default true'
required: false
default: true
type: boolean
default: 'true'

runs:
using: composite
Expand Down Expand Up @@ -39,4 +37,4 @@ runs:
with:
repository: actualbudget/translations
path: ${{ inputs.working-directory }}/packages/desktop-client/locale
if: ${{ inputs.download-translations }}
if: ${{ inputs.download-translations == 'true' }}

0 comments on commit 8781184

Please sign in to comment.