Skip to content

Commit

Permalink
add input for python version
Browse files Browse the repository at this point in the history
  • Loading branch information
gionn committed Nov 6, 2024
1 parent 4919e44 commit fe4acd9
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/actions/slack-file-upload/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,18 @@ inputs:
required: true
file-title:
description: 'Title of file'
python-version:
description: 'Python version'
required: false
default: '3.9'
runs:
using: composite
steps:
- name: Setup Python
uses: actions/setup-python@0b93645e9fea7318ecaed2b359559ac225c90a2b # v5.3.0
id: setup-python
with:
python-version: "3.9"
python-version: ${{ inputs.python-version }}

- name: Workaround for hashFiles not working outside current workspace
shell: bash
Expand Down

0 comments on commit fe4acd9

Please sign in to comment.