Update Build.yml

This commit is contained in:
Nix 2024-12-31 14:39:42 -03:00 committed by GitHub
parent 2a4ba7cfcf
commit cef44074c5
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -24,20 +24,16 @@ jobs:
pip install pyqt5 requests pywin32 pyinstaller pillow # Install specific dependencies
- name: Create actions-temp folder
run: |
mkdir actions-temp # Create the folder called actions-temp
run: mkdir actions-temp # Create the folder called actions-temp
- name: Download picoBuild.py script
run: |
curl -L -o actions-temp/picoBuild.py https://raw.githubusercontent.com/nixietab/picodulce-build-script/refs/heads/main/picoBuild.py
run: curl -L -o actions-temp/picoBuild.py https://raw.githubusercontent.com/nixietab/picodulce-build-script/refs/heads/main/picoBuild.py
- name: Run picoBuild.py script
run: |
python actions-temp/picoBuild.py
run: python actions-temp/picoBuild.py
- name: Debug: Show directory structure
run: |
tree /F /A actions-temp # Show folder structure of actions-temp for debugging
run: dir actions-temp /s # Windows equivalent of tree for debugging
- name: Get version and name from version.json
id: version_info