Skip to content

Commit

Permalink
Do not try to generate dependency graphs for non-package projects
Browse files Browse the repository at this point in the history
  • Loading branch information
kdeldycke committed Apr 18, 2024
1 parent a6fdd94 commit c1539ce
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/docs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ jobs:
name: Update dependency graph
needs:
- project-metadata
if: fromJSON(needs.project-metadata.outputs.is_poetry_project)
if: fromJSON(needs.project-metadata.outputs.is_poetry_project) && needs.project-metadata.outputs.package_name
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4.1.2
Expand Down
4 changes: 3 additions & 1 deletion changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,11 @@
This version is not released yet and is under active development.
```

- Do not try to generate dependency graphs for non-`package-mode` Poetry projects.

## [3.4.4 (2024-04-17)](https://github.com/kdeldycke/workflows/compare/v3.4.3...v3.4.4)

- Name is optional for non `package-mode` Poetry projects.
- Name is optional for non-`package-mode` Poetry projects.

## [3.4.3 (2024-04-14)](https://github.com/kdeldycke/workflows/compare/v3.4.2...v3.4.3)

Expand Down

0 comments on commit c1539ce

Please sign in to comment.