Skip to content

Commit

Permalink
ci: fix variable expansion stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
truenicoco committed Jan 9, 2025
1 parent b840e89 commit c3f9593
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,15 +41,15 @@ jobs:
path: pyinstaller
- uses: actions/upload-artifact@v4
with:
name: $ARTIFACT_PREFIX-windows
name: ${{ env.ARTIFACT_PREFIX }}-windows
path: pyinstaller/dist/windows

# python package
- name: Build PyPI package
run: uv build
- uses: actions/upload-artifact@v4
with:
name: $ARTIFACT_PREFIX-pypi
name: ${{ env.ARTIFACT_PREFIX }}-pypi
path: dist
- name: PyPI release
if: startsWith(github.ref, 'refs/tags/v')
Expand All @@ -61,9 +61,9 @@ jobs:
- name: Check what artifacts have been downloaded
run: |
ls -la
ls -la $ARTIFACT_PREFIX*
ls -la ${{ env.ARTIFACT_PREFIX }}*
- name: Github release
if: startsWith(github.ref, 'refs/tags/v')
uses: softprops/action-gh-release@v2
with:
files: $ARTIFACT_PREFIX*
files: ${{ env.ARTIFACT_PREFIX }}*

0 comments on commit c3f9593

Please sign in to comment.