Skip to content

Commit

Permalink
Debugging broken zip archives
Browse files Browse the repository at this point in the history
Update tag-release.yml
  • Loading branch information
aziascreations committed Jun 14, 2023
1 parent 910b8ad commit a5dbb76
Showing 1 changed file with 18 additions and 4 deletions.
22 changes: 18 additions & 4 deletions .github/workflows/tag-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ jobs:
mkdir -p output-py/ebyte_e32
mkdir output-mpy
mkdir output-min-mpy
cp -r ./ebyte_e32 ./output-py/ebyte_e32
cp -r ./ebyte_e32 ./output-py
- name: Compiling Normal Module
uses: addnab/docker-run-action@v3
Expand All @@ -71,13 +71,27 @@ jobs:

- name: Make ZIP Archives
run: |
echo "Doing regular files..."
cd output-py
ls -laR ./
zip -r -9 ../nibblepoker-circuitpython-e32-driver_${{ github.ref_name }}_py.zip ebyte_e32
cd ../output-min
cd ..
echo "Doing minified files..."
cd output-min
ls -laR ./
zip -r -9 ../nibblepoker-circuitpython-e32-driver_${{ github.ref_name }}_py-min.zip ebyte_e32
cd ../output-mpy
cd ..
echo "Doing compiled files..."
cd output-mpy
ls -laR ./
zip -r -9 ../nibblepoker-circuitpython-e32-driver_${{ github.ref_name }}_mpy-8.zip ebyte_e32
cd ../output-min-mpy
cd ..
echo "Doing compiled minified files..."
cd output-min-mpy
ls -laR ./
zip -r -9 ../nibblepoker-circuitpython-e32-driver_${{ github.ref_name }}_mpy-8-min.zip ebyte_e32
cd ..
Expand Down

0 comments on commit a5dbb76

Please sign in to comment.