Skip to content

Commit ae6774e

Browse files
authored
fix(build): Properly include mlc.__version__ (#17)
1 parent fe809a8 commit ae6774e

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/release.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
- name: Install cibuildwheel
2929
run: python -m pip install cibuildwheel=="${{ env.MLC_CIBW_VERSION }}"
3030
- name: Build wheels
31-
run: python -m cibuildwheel --output-dir wheelhouse
31+
run: rm -rf .gitignore && python -m cibuildwheel --output-dir wheelhouse
3232
env:
3333
CIBW_BUILD: ${{ env.MLC_CIBW_WIN_BUILD }}
3434
- name: Show package contents
@@ -51,7 +51,7 @@ jobs:
5151
- name: Install cibuildwheel
5252
run: python -m pip install cibuildwheel==${{ env.MLC_CIBW_VERSION }}
5353
- name: Build wheels
54-
run: python -m cibuildwheel --output-dir wheelhouse
54+
run: rm -rf .gitignore && python -m cibuildwheel --output-dir wheelhouse
5555
env:
5656
CIBW_BUILD: ${{ env.MLC_CIBW_MAC_BUILD }}
5757
- name: Show package contents
@@ -74,7 +74,7 @@ jobs:
7474
- name: Install cibuildwheel
7575
run: python -m pip install cibuildwheel==${{ env.MLC_CIBW_VERSION }}
7676
- name: Build wheels
77-
run: python -m cibuildwheel --output-dir wheelhouse
77+
run: rm -rf .gitignore && python -m cibuildwheel --output-dir wheelhouse
7878
env:
7979
CIBW_BUILD: ${{ env.MLC_CIBW_MAC_X86_BUILD }}
8080
- name: Show package contents
@@ -97,7 +97,7 @@ jobs:
9797
- name: Install cibuildwheel
9898
run: python -m pip install cibuildwheel==${{ env.MLC_CIBW_VERSION }}
9999
- name: Build wheels
100-
run: python -m cibuildwheel --output-dir wheelhouse
100+
run: rm -rf .gitignore && python -m cibuildwheel --output-dir wheelhouse
101101
env:
102102
CIBW_BUILD: ${{ env.MLC_CIBW_LINUX_BUILD }}
103103
- name: Show package contents

0 commit comments

Comments
 (0)