Skip to content

Commit

Permalink
Path is not updated anymore.
Browse files Browse the repository at this point in the history
  • Loading branch information
WyvernIXTL committed Jun 26, 2024
1 parent 61d5bc4 commit ee69b87
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,16 +17,18 @@ runs:
steps:
- name: Install Python
uses: actions/setup-python@v5
id: cp312
with:
python-version: 3.12
update-environment: false
- name: Install Installation Instruction (latest)
if: ${{ inputs.version == '' }}
shell: pwsh
run: python -m pip install installation-instruction
run: ${{ steps.cp312.outputs.python-path }} -m pip install installation-instruction
- name: Install Installation Instruction (with version)
if: ${{ inputs.version != '' }}
shell: pwsh
run: python -m pip install 'installation-instruction==${{ inputs.version }}'
run: ${{ steps.cp312.outputs.python-path }} -m pip install 'installation-instruction==${{ inputs.version }}'
- name: Install from Config File
shell: pwsh
run: ibi install ${{ inputs.path }} ${{ inputs.options }}
Expand Down

0 comments on commit ee69b87

Please sign in to comment.