Skip to content

Commit

Permalink
Add pip package install
Browse files Browse the repository at this point in the history
  • Loading branch information
RyeMutt committed Jun 30, 2024
1 parent f04b11d commit ba0042b
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,9 @@ inputs:
type: string
description: Version of autobuild to install
default: 3.*
pip-packages:
type: string
description: Additional pip packages to install
mysys2-packages:
type: string
description: Additional mysys2 packages to install
Expand Down Expand Up @@ -169,6 +172,12 @@ runs:
pip install "autobuild @ git+https://github.com/secondlife/autobuild@$VERSION"
fi
- name: Setup pip packages
if: ${{ inputs.pip-packages }}
shell: bash
run: |
pip install ${{ inputs.pip-packages }}
- name: Setup mysys2
if: ${{ runner.os == 'Windows' && inputs.mysys2-packages }}
shell: bash
Expand Down

0 comments on commit ba0042b

Please sign in to comment.