Skip to content

Commit

Permalink
Merge pull request #5 from lucienshawls/dev
Browse files Browse the repository at this point in the history
ci: fix variable issue
  • Loading branch information
lucienshawls authored Oct 23, 2024
2 parents 242ec56 + 464d999 commit e727ecc
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,16 +52,16 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: "./dist/configwebui_lucien-$VERSION-py3-none-any.whl"
asset_name: "configwebui_lucien-$VERSION-py3-none-any.whl"
asset_path: ./dist/configwebui_lucien-${{ env.VERSION }}-py3-none-any.whl
asset_name: configwebui_lucien-${{ env.VERSION }}-py3-none-any.whl
asset_content_type: application/octet-stream

- name: Upload source tarball to GitHub Release
uses: actions/upload-release-asset@v1
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: "./dist/configwebui_lucien-$VERSION.tar.gz"
asset_name: "configwebui_lucien-$VERSION.tar.gz"
asset_path: ./dist/configwebui_lucien-${{ env.VERSION }}.tar.gz
asset_name: configwebui_lucien-${{ env.VERSION }}.tar.gz
asset_content_type: application/octet-stream

- name: Publish package distributions to PyPI
Expand Down

0 comments on commit e727ecc

Please sign in to comment.