Skip to content

Commit

Permalink
feat: default to stable release
Browse files Browse the repository at this point in the history
  • Loading branch information
danielknell committed Feb 24, 2023
1 parent f5ea9e7 commit ef60d31
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ inputs:
description: "poetry version to install"
type: "string"
required: false
default: "1.2.0b2"

extras:
description: "python extras to install"
Expand All @@ -22,7 +21,7 @@ runs:
using: "composite"
steps:
- name: install poetry
run: curl -sSL https://install.python-poetry.org | python - --version "${{ inputs.version }}"
run: curl -sSL https://install.python-poetry.org | python - ${{ inputs.version && format('--version "{0}"', inputs.version) }}
shell: bash

- name: update path
Expand Down

0 comments on commit ef60d31

Please sign in to comment.