Skip to content

Commit

Permalink
chore(pipelines): fix release actions
Browse files Browse the repository at this point in the history
  • Loading branch information
portellaa committed Aug 1, 2023
1 parent b3ff747 commit e9d8fc7
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
make install-deps-packaging
- name: Build package
run: make package version=${{ github.ref_name }}
run: make build version=${{ github.ref_name }}

- name: Upload Pipeline Artifacts
uses: actions/upload-artifact@v3
Expand Down
1 change: 1 addition & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ define BUILD
echo version = \"$(version)\" > $1/__version__.py && \
stubgen . --export-less && \
$(PYTHON) -m build --wheel
twine check dist/*
endef

define UPLOAD
Expand Down
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@ dev = [
]

packaging = [
"twine",
"build",
"pyc_wheel",
"mypy",
Expand Down

0 comments on commit e9d8fc7

Please sign in to comment.