We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4305eac commit e1eb1d1Copy full SHA for e1eb1d1
.github/workflows/pull-request-management.yml
@@ -314,13 +314,16 @@ jobs:
314
- name: Move Wheel Package to Build Context
315
run: |
316
mv /tmp/wheels $GITHUB_WORKSPACE
317
+ WHEELS_PATH=$(realpath ./wheels/*.whl)
318
+ git add $WHEELS_PATH
319
+ git commit -m "wheel package"
320
- name: Get Full Path of Wheels Directory
321
322
WHEELS_PATH=$(realpath ./wheels/*.whl)
323
echo "wheel_path=$WHEELS_PATH" >> $GITHUB_ENV
- # - name: Use Full Path
- # run: |
- # echo "The wheels directory is at: $WHEELS_PATH"
324
+ - name: Use Full Path
325
+ run: |
326
+ echo "The wheels directory is at: $WHEELS_PATH"
327
- name: Set up Docker Buildx
328
uses: docker/setup-buildx-action@v3
329
- name: Build and push PyAVD Image
0 commit comments