Skip to content

Commit

Permalink
Fixed release paths
Browse files Browse the repository at this point in the history
  • Loading branch information
j-raghavan committed Dec 18, 2024
1 parent e379369 commit 69cf521
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,23 +27,25 @@ jobs:
virtualenvs-create: true
virtualenvs-in-project: true

- name: Install Dependencies
run: |
poetry install --no-interaction
- name: Configure Poetry
working-directory: ./src/orchestrator
run: |
poetry config repositories.github "https://github.com/j-raghavan/orchestrator/releases/download/latest/"
poetry config http-basic.github ${{ github.repository_owner }} ${{ secrets.GITHUB_TOKEN }}
- name: Build package
working-directory: ./src/orchestrator
run: poetry build

- name: Create Release
id: create_release
uses: softprops/action-gh-release@v1
with:
files: |
src/orchestrator/dist/*.whl
src/orchestrator/dist/*.tar.gz
dist/*.whl
dist/*.tar.gz
draft: false
prerelease: false
generate_release_notes: true

0 comments on commit 69cf521

Please sign in to comment.