Skip to content
This repository has been archived by the owner on Sep 24, 2024. It is now read-only.

Commit

Permalink
updating download ref
Browse files Browse the repository at this point in the history
  • Loading branch information
binaryaaron committed Feb 14, 2024
1 parent f8fcf66 commit 9678450
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 3 deletions.
11 changes: 9 additions & 2 deletions .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit 9678450

Please sign in to comment.