Skip to content

Commit

Permalink
fix: resolve package name (#9)
Browse files Browse the repository at this point in the history
By including the coverage configuration in the `pyproject.toml` file. The name of the project did not resolve correctly. By adding the ` =` we ensure that it is actually the correct name.
  • Loading branch information
Joris Conijn authored Jul 22, 2022
1 parent 545a89f commit fdc8e66
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ jobs:
- name: Prepare variables
id: vars
run: |
echo ::set-output name=version::$(awk '/version/{print $NF}' pyproject.toml | sed 's/\"//g')
echo ::set-output name=project::$(awk '/name/{print $NF}' pyproject.toml | sed 's/\"//g')
echo ::set-output name=version::$(awk '/version =/{print $NF}' pyproject.toml | sed 's/\"//g')
echo ::set-output name=project::$(awk '/name =/{print $NF}' pyproject.toml | sed 's/\"//g')
- name: Install poetry
uses: abatilo/[email protected]
- name: Install dependencies
Expand Down

0 comments on commit fdc8e66

Please sign in to comment.