Skip to content

Commit

Permalink
final fix (#576)
Browse files Browse the repository at this point in the history
  • Loading branch information
almarklein authored Sep 11, 2024
1 parent 627f509 commit e2838ae
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,9 @@ jobs:
with:
path: dist
- name: Flatten dist dir
run: find dist -mindepth 2 -type f -exec mv -f '{}' dist/ ';'
run: |
find dist -mindepth 2 -type f -exec mv -f '{}' dist/ ';'
rm -rf dist/*/
- name: Set version from git ref
run: echo "WGPU_PY_VERSION=${GITHUB_REF/refs\/tags\//}" >> $GITHUB_ENV
- name: Upload Release Assets
Expand Down

0 comments on commit e2838ae

Please sign in to comment.