Skip to content

Commit

Permalink
Fix wheel release
Browse files Browse the repository at this point in the history
  • Loading branch information
cmd-ntrf committed Dec 4, 2023
1 parent f7d9cd2 commit 9b7560a
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/wheel.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,18 +19,23 @@ jobs:
- name: Build wheel
run: poetry build
- uses: actions/upload-artifact@v3
name: python-package-distributions
with:
path: ./dist/*.whl
create_release:
runs-on: ubuntu-latest
name: Create release
needs: [build_wheel]
steps:
- name: Download all the dists
uses: actions/download-artifact@v3
with:
name: python-package-distributions
path: dist/
- name: Release
uses: softprops/action-gh-release@v1
with:
name: Elastic Slurm TC Cloud ${{ steps.tag_name.outputs.SOURCE_TAG }}
body_path: ${{ steps.tag_name.outputs.SOURCE_TAG }}-CHANGELOG.txt
name: Slurm Autoscale TFE
draft: true
files: |
dist/*
Expand Down

0 comments on commit 9b7560a

Please sign in to comment.