Skip to content

Commit

Permalink
Updated app-release action
Browse files Browse the repository at this point in the history
  • Loading branch information
moleculekayak committed Dec 19, 2024
1 parent 56c4a18 commit a28772c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/app-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
- name: Checkout
uses: actions/checkout@v4
- name: Build Artifacts
run: zip -r fertilizer.zip src main.py requirements.txt
run: zip -r fertilizer.zip src pyproject.toml
- name: Release
uses: softprops/action-gh-release@v2
if: startsWith(github.ref, 'refs/tags/')
Expand Down
8 changes: 4 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@ dependencies = [
"bencoder",
"colorama",
"requests",
"flask",
"pytest",
"requests-mock",
"ruff",
"flask"
]

[project.optional-dependencies]
dev = ["pytest", "ruff", "requests-mock"]

[project.scripts]
fertilizer = "fertilizer.main:main"

Expand Down

0 comments on commit a28772c

Please sign in to comment.