diff --git a/.github/workflows/maven-integration.yml b/.github/workflows/maven-integration.yml index fe4a24f..298949b 100644 --- a/.github/workflows/maven-integration.yml +++ b/.github/workflows/maven-integration.yml @@ -63,7 +63,7 @@ jobs: if: matrix.proxy == 'YES' - name: Run created binary run: | - ARGS="-client ${{ matrix.client }} -abort-after 100 deutschlandfunk -d deutschlandfunk" + ARGS="-client ${{ matrix.client }} -abort-after 100 240d28b9-7858-48d2-a816-9cf8e1875fe8 -d output" if [ "${{ matrix.proxy }}" = "YES" ]; then ARGS=$ARGS" -proxy http://localhost:3128/ " fi @@ -81,7 +81,7 @@ jobs: if: matrix.proxy == 'YES' - name: Test first mp3 file run: | - FIRST_MPEG=$(ls deutschlandfunk/*/*.mp3 | head -n1) + FIRST_MPEG=$(ls output/*/*.mp3 | head -n1) if [ ! -f "${FIRST_MPEG}" ]; then echo "Not a file: ${FIRST_MPEG}" exit 1 @@ -97,7 +97,7 @@ jobs: FILE_TYPE="$(file --brief --mime ${FIRST_MPEG})" if [ "${FILE_TYPE}" != "audio/mpeg; charset=binary" ]; then - echo "File type is wrong: $(file --mime $(ls deutschlandfunk/*/*.mp3 | head -n1))" + echo "File type is wrong: $(file --mime $(ls output/*/*.mp3 | head -n1))" exit 3 else echo "File type of ${FIRST_MPEG}: ${FILE_TYPE}"