From 9678450ae27bc2a9a617d9e49c098ddfebeb9575 Mon Sep 17 00:00:00 2001 From: Aaron Gonzales Date: Wed, 14 Feb 2024 11:44:42 -0700 Subject: [PATCH] updating download ref --- .github/workflows/publish.yaml | 11 +++++++++-- pyproject.toml | 2 +- 2 files changed, 10 insertions(+), 3 deletions(-) diff --git a/.github/workflows/publish.yaml b/.github/workflows/publish.yaml index 80a34a25..ee97fac0 100644 --- a/.github/workflows/publish.yaml +++ b/.github/workflows/publish.yaml @@ -74,16 +74,23 @@ jobs: # should only run when commits are pushed to main and a tag is there (from above) steps: + - name: download artifacts + uses: actions/download-artifact@v4 + with: + name: dists + path: ./dist/ + merge-multiple: true + - name: Release Draft uses: softprops/action-gh-release@v1 with: - files: ${{ needs.build_dist.outputs.DISTS }} + files: ./dist/* draft: true - name: Release uses: softprops/action-gh-release@v1 if: endsWith(github.event.base_ref, 'main') == true with: - files: ${{ needs.build_dist.outputs.DISTS }} + files: ./dist/* draft: true \ No newline at end of file diff --git a/pyproject.toml b/pyproject.toml index 207849ef..c8d2312d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api" [tool.poetry] name = "lm-buddy" -version = "0.1.0rc7" +version = "0.1.0rc8" description = "Ray-centric library for finetuning and evaluation of (large) language models." repository = "https://github.com/mozilla-ai/lm-buddy" readme = "README.md"