Skip to content

Commit

Permalink
fix: update action.yaml for dumpSyms support (#136)
Browse files Browse the repository at this point in the history
dumpSyms is a simple switch, so we need more logic.
pwsh is weird so check dumpSyms vaslue to be explicitly 'true'

Co-authored-by: Beq <[email protected]>
  • Loading branch information
beqjanus and Beq authored Sep 12, 2024
1 parent 9382f3c commit 769fdf8
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,11 @@ inputs:
type: string
required: false
default: '20'
dumpSyms:
description: "Use dumpSyms to generate symbols"
type: boolean
required: false
default: false

runs:
using: composite
Expand All @@ -75,3 +80,4 @@ runs:
-s "${{ inputs.clientSecret }}"
-f "${{ inputs.files }}"
-d "${{ inputs.directory }}"
${{ inputs.dumpSyms == 'true' && '-m' || '' }}

0 comments on commit 769fdf8

Please sign in to comment.