File tree 1 file changed +12
-9
lines changed
1 file changed +12
-9
lines changed Original file line number Diff line number Diff line change @@ -138,12 +138,15 @@ jobs:
138
138
WORKDIR /avd
139
139
140
140
# Build the wheel package
141
- RUN pip install -r .github/requirements-ci.txt --upgrade && \
142
- mkdir -p /wheels && \
143
- find / -name "pyavd*.whl" -exec mv {} /wheels/ \; && \
144
- echo "Wheel packages moved to /wheels:" && \
145
- ls -al /wheels && \
146
- test "$(ls -A /wheels)" || (echo "No wheel package found in /wheels!" && exit 1)
141
+ RUN cd python-avd && \
142
+ pip3 install build
143
+ python3 -m build --wheel
144
+ # cd .. && \
145
+ # mkdir /wheels && \
146
+ # find / -name "pyavd*.whl" -exec mv {} /wheels/ \; && \
147
+ # echo "Wheel packages moved to /wheels:" && \
148
+ # ls -al /wheels && \
149
+ # test "$(ls -A /wheels)" || (echo "No wheel package found in /wheels!" && exit 1)
147
150
148
151
# # Create virtual env
149
152
# # RUN uv venv --python 3.10 UV3.10 && \
@@ -179,9 +182,9 @@ jobs:
179
182
EOF
180
183
echo "Dockerfile created successfully."
181
184
182
- # - name: Build Docker Image
183
- # run: |
184
- # docker build -t ghcr.io/${{ steps.lowercase.outputs.lowercase }}/avd/python_avd:0.0.1 .
185
+ - name : Build Docker Image
186
+ run : |
187
+ docker build -t ghcr.io/${{ steps.lowercase.outputs.lowercase }}/avd/python_avd:0.0.1 .
185
188
186
189
# - name: Push Docker Image
187
190
# run: |
You can’t perform that action at this time.
0 commit comments