File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 4545 - [available versions]
4646
4747In either case, the actions's `debug` input can be used to install a
48- debug build of the selected Python version.
48+ debug build of the selected Python version, by adding `debug : true` .
4949
5050note : this action is incompatible with ubuntu-16.04 due to a limitation in
5151` add-apt-repository`
Original file line number Diff line number Diff line change @@ -11,6 +11,6 @@ inputs:
1111runs :
1212 using : composite
1313 steps :
14- - name : add deadsnakes ppa and install ${{ inputs.python-version }} ${{ inputs.debug && '(debug)' || '' }}
15- run : ${{ github.action_path }}/bin/install-python ${{ inputs.python-version }} ${{ inputs.debug && '--debug' || '' }}
14+ - name : add deadsnakes ppa and install ${{ inputs.python-version }} ${{ inputs.debug == 'true' && '(debug)' || '' }}
15+ run : ${{ github.action_path }}/bin/install-python ${{ inputs.python-version }} ${{ inputs.debug == 'true' && '--debug' || '' }}
1616 shell : bash
You can’t perform that action at this time.
0 commit comments