-
Notifications
You must be signed in to change notification settings - Fork 53
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #26 from snok/release-v1.1.2
Release v1.1.2
- Loading branch information
Showing
3 changed files
with
10 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,14 +15,14 @@ If all you need is default Poetry, simply add this to your workflow: | |
|
||
```yaml | ||
- name: Install Poetry | ||
uses: snok/[email protected].1 | ||
uses: snok/[email protected].2 | ||
``` | ||
If you want to set Poetry config settings, or install a specific version, you can specify inputs | ||
```yaml | ||
- name: Install and configure Poetry | ||
uses: snok/[email protected].1 | ||
uses: snok/[email protected].2 | ||
with: | ||
version: 1.1.4 | ||
virtualenvs-create: true | ||
|
@@ -49,7 +49,7 @@ or just to make changes to the Poetry config *after* invoking the action - | |
you can do so in a subsequent step, like this | ||
|
||
```yaml | ||
- uses: snok/[email protected].1 | ||
- uses: snok/[email protected].2 | ||
- run: poetry config experimental.new-installer false | ||
``` | ||
|
||
|
@@ -96,7 +96,7 @@ jobs: | |
# ----- install & configure poetry ----- | ||
#---------------------------------------------- | ||
- name: Install Poetry | ||
uses: snok/[email protected].1 | ||
uses: snok/[email protected].2 | ||
with: | ||
virtualenvs-create: true | ||
virtualenvs-in-project: true | ||
|
@@ -192,7 +192,7 @@ jobs: | |
# ----- install & configure poetry ----- | ||
#---------------------------------------------- | ||
- name: Install Poetry | ||
uses: snok/[email protected].1 | ||
uses: snok/[email protected].2 | ||
with: | ||
virtualenvs-create: true | ||
virtualenvs-in-project: true | ||
|
@@ -259,7 +259,7 @@ jobs: | |
# ----- install & configure poetry ----- | ||
#---------------------------------------------- | ||
- name: Install Poetry | ||
uses: snok/[email protected].1 | ||
uses: snok/[email protected].2 | ||
with: | ||
virtualenvs-create: true | ||
virtualenvs-in-project: true | ||
|
@@ -360,7 +360,7 @@ jobs: | |
with: | ||
python-version: 3.9 | ||
- name: Install Poetry | ||
uses: snok/[email protected].1 | ||
uses: snok/[email protected].2 | ||
with: | ||
virtualenvs-create: true | ||
virtualenvs-in-project: true | ||
|
@@ -395,7 +395,7 @@ All of the examples we've added use these Poetry settings | |
|
||
```yaml | ||
- name: Install Poetry | ||
uses: snok/[email protected].1 | ||
uses: snok/[email protected].2 | ||
with: | ||
virtualenvs-create: true | ||
virtualenvs-in-project: true | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[tool.poetry] | ||
name = "Test" | ||
version = "1.1.1" | ||
version = "1.1.2" | ||
description = "" | ||
authors = ["Sondre Lillebø Gundersen <[email protected]>"] | ||
maintainers = ["Jonas Krüger Svensson <[email protected]>"] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
poetry==1.1.4 | ||
poetry==1.1.5 |