Skip to content

Commit

Permalink
v0.21.7; gh release fix (#1558)
Browse files Browse the repository at this point in the history
  • Loading branch information
dpaiton authored Jun 21, 2024
1 parent 9aa88d8 commit 5df1ede
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 5 deletions.
11 changes: 7 additions & 4 deletions .github/workflows/build_and_upload.yml
Original file line number Diff line number Diff line change
Expand Up @@ -88,8 +88,10 @@ jobs:
- name: upload dependency file
uses: actions/upload-artifact@v4
with:
name: frozen-dependencies
path: ./frozen-requirements.txt
name: frozen-requirements.txt
path: $GITHUB_WORKSPACE/frozen-requirements.txt
retention-days: 1
overwrite: true

upload-dependencies:
needs: [generate-dependencies]
Expand All @@ -101,10 +103,11 @@ jobs:
uses: actions/download-artifact@v4
with:
pattern: frozen-requirements.txt
path: ./
path: $GITHUB_WORKSPACE

- name: Upload dependency list to release
env:
GH_TOKEN: ${{ github.token }}
shell: bash
run: |
gh release upload ${{ github.ref_name }} ./frozen-requirements.txt
gh release upload ${{ github.ref_name }} $GITHUB_WORKSPACE/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.6"
version = "0.21.7"
# Authors are the current, primary stewards of the repo
# contributors can be found on github
authors = [
Expand Down

0 comments on commit 5df1ede

Please sign in to comment.