Your ROOT_URL in app.ini is https://source.parasitstudio.de:63000/ but you are visiting https://source.parasitstudio.de/wirtz/MiniDexed/commit/4ac357e51d13a1ec2f3e2272d86f9946eec64154?style=split&whitespace=show-all
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
6 additions and
6 deletions
.github/workflows/build.yml
@ -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