|
|
@ -81,10 +81,6 @@ jobs: |
|
|
|
run: | |
|
|
|
run: | |
|
|
|
git clone https://github.com/Banana71/Soundplantage --depth 1 # depth 1 means only the latest commit |
|
|
|
git clone https://github.com/Banana71/Soundplantage --depth 1 # depth 1 means only the latest commit |
|
|
|
cp -r ./Soundplantage/performance ./Soundplantage/*.pdf ./sdcard/ |
|
|
|
cp -r ./Soundplantage/performance ./Soundplantage/*.pdf ./sdcard/ |
|
|
|
cd sdcard |
|
|
|
|
|
|
|
zip -r ../MiniDexed_$GITHUB_RUN_NUMBER_$(date +%Y-%m-%d)-$(git rev-parse --short HEAD).zip * |
|
|
|
|
|
|
|
echo "artifactName=MiniDexed_$GITHUB_RUN_NUMBER_$(date +%Y-%m-%d)-$(git rev-parse --short HEAD)" >> $GITHUB_ENV |
|
|
|
|
|
|
|
cd - |
|
|
|
|
|
|
|
- name: Hardware configration files |
|
|
|
- name: Hardware configration files |
|
|
|
run: | |
|
|
|
run: | |
|
|
|
cd hwconfig |
|
|
|
cd hwconfig |
|
|
@ -92,8 +88,12 @@ jobs: |
|
|
|
cd - |
|
|
|
cd - |
|
|
|
mkdir -p ./sdcard/hardware/ |
|
|
|
mkdir -p ./sdcard/hardware/ |
|
|
|
cp -r ./hwconfig/minidexed_* ./sdcard/minidexed.ini ./sdcard/hardware/ |
|
|
|
cp -r ./hwconfig/minidexed_* ./sdcard/minidexed.ini ./sdcard/hardware/ |
|
|
|
ls -lh ./sdcard/ |
|
|
|
- name: zip |
|
|
|
ls -lh ./sdcard/hardware/ |
|
|
|
run: | |
|
|
|
|
|
|
|
cd sdcard |
|
|
|
|
|
|
|
zip -r ../MiniDexed_$GITHUB_RUN_NUMBER_$(date +%Y-%m-%d)-$(git rev-parse --short HEAD).zip * |
|
|
|
|
|
|
|
echo "artifactName=MiniDexed_$GITHUB_RUN_NUMBER_$(date +%Y-%m-%d)-$(git rev-parse --short HEAD)" >> $GITHUB_ENV |
|
|
|
|
|
|
|
cd - |
|
|
|
- uses: actions/upload-artifact@v4 |
|
|
|
- uses: actions/upload-artifact@v4 |
|
|
|
with: |
|
|
|
with: |
|
|
|
name: ${{ env.artifactName }} # Exported above |
|
|
|
name: ${{ env.artifactName }} # Exported above |
|
|
|