Skip to content

Commit

Permalink
v0.21.5; fix gh release (#1556)
Browse files Browse the repository at this point in the history
  • Loading branch information
dpaiton authored Jun 21, 2024
1 parent 3896011 commit 608eee3
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/build_and_upload.yml
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ jobs:
uses: actions/upload-artifact@v4
with:
name: frozen-dependencies
path: dist/frozen-requirements.txt
path: ./frozen-requirements.txt

upload-dependencies:
needs: [generate-dependencies]
Expand All @@ -101,10 +101,9 @@ jobs:
uses: actions/download-artifact@v4
with:
pattern: frozen-requirements.txt
path: dist
- name: Upload dependency list to release
env:
GH_TOKEN: ${{ github.token }}
shell: bash
run: |
gh release upload ${{ github.ref_name }} ./dist/frozen-requirements.txt
gh release upload ${{ github.ref_name }} ./frozen-requirements.txt
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "agent0"
version = "0.21.4"
version = "0.21.5"
# Authors are the current, primary stewards of the repo
# contributors can be found on github
authors = [
Expand Down
2 changes: 1 addition & 1 deletion scripts/generate_deps.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ source .venv/bin/activate
pip install agent0

# Export dependency versions used to build the wheel
FREEZE_FILE="dist/frozen-requirements.txt"
FREEZE_FILE="frozen-requirements.txt"
timestamp="$(date)"
version="$(git describe --abbrev=12 --always)"
echo -e "# Generated at $timestamp ($version)\n" > $FREEZE_FILE
Expand Down

0 comments on commit 608eee3

Please sign in to comment.