Skip to content

Commit

Permalink
add install options (#2)
Browse files Browse the repository at this point in the history
* add install-options

* add install options
  • Loading branch information
grizz authored Oct 5, 2024
1 parent 11632c1 commit 0aee7d1
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,10 @@ inputs:
required: false
default: 3.x
type: string
install-options:
required: false
default: ""
type: string
outputs:
venv-path:
description: "virtualenv path"
Expand Down
6 changes: 5 additions & 1 deletion poetry/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ inputs:
required: false
default: 3.x
type: string
install-options:
required: false
default: ""
type: string
outputs:
venv-path:
description: "virtualenv path"
Expand Down Expand Up @@ -61,4 +65,4 @@ runs:
# install dependencies if cache does not exist
- name: Check cache and install dependencies
shell: bash
run: poetry install --no-interaction
run: poetry install --no-interaction ${{ inputs.install-options }}

0 comments on commit 0aee7d1

Please sign in to comment.