Skip to content

Commit

Permalink
Fixed last issue with uploaded files from CI (taking output from a ce…
Browse files Browse the repository at this point in the history
…rtain step)
  • Loading branch information
kkalinowski-reef committed Jan 12, 2023
1 parent 834b61e commit 3c0c216
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -145,4 +145,4 @@ jobs:
name: ${{ needs.deploy.outputs.version }}
draft: ${{ env.ACTIONS_STEP_DEBUG == 'true' }}
prerelease: false
files: ${{ steps.sign.outputs.asset_path }}
files: ${{ steps.bundle.outputs.asset_path }}
2 changes: 1 addition & 1 deletion noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -347,7 +347,7 @@ def sign_windows(cert_file, cert_password):

# Set outputs for GitHub Actions
if CI:
asset_path = 'dist/*'
asset_path = str(pathlib.Path('dist') / '*')
print(f'asset_path={asset_path}')


Expand Down

0 comments on commit 3c0c216

Please sign in to comment.