Skip to content

Commit 4e93792

Browse files
committed
🚧 try to use miniconda action for python exe
1 parent 068239a commit 4e93792

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

.github/workflows/cdci.yml

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -126,9 +126,9 @@ jobs:
126126
build-executable:
127127
name: Build-exe-${{ matrix.os.label }}
128128
runs-on: ${{ matrix.os.runner }}
129-
needs:
130-
- test
131-
- other-reports
129+
# needs:
130+
# - test
131+
# - other-reports
132132
strategy:
133133
matrix:
134134
python-version: ["3.11"]
@@ -144,8 +144,12 @@ jobs:
144144
label: "windows-x64"
145145
steps:
146146
- uses: actions/checkout@v4
147-
- uses: actions/setup-python@v5
147+
# - uses: actions/setup-python@v5
148+
# with:
149+
# python-version: ${{ matrix.python-version }}
150+
- uses: conda-incubator/setup-miniconda@v3
148151
with:
152+
auto-update-conda: true
149153
python-version: ${{ matrix.python-version }}
150154
- name: Install VueGen GUI and pyinstaller
151155
run: python -m pip install ".[gui]" pyinstaller

0 commit comments

Comments
 (0)