diff --git a/.github/workflows/cli.yml b/.github/workflows/cli.yml index 0f06b683..3ce61fc1 100644 --- a/.github/workflows/cli.yml +++ b/.github/workflows/cli.yml @@ -62,7 +62,7 @@ jobs: export CARGO_TARGET_AARCH64_UNKNOWN_LINUX_GNU_LINKER=/usr/bin/aarch64-linux-gnu-gcc cargo build --release --target ${{ matrix.target }} # upload-artifact does not rename the file, so when we download if we don't rename all files will have the same name. - mv -v ../target/release/minhtml${{ matrix.EXT }} ${{ steps.file.outputs.FILE }} + mv -v ../target/${{ matrix.target }}/release/minhtml${{ matrix.EXT }} ${{ steps.file.outputs.FILE }} - name: Upload uses: actions/upload-artifact@v4 diff --git a/.github/workflows/java.yml b/.github/workflows/java.yml index b55d7041..d9736272 100644 --- a/.github/workflows/java.yml +++ b/.github/workflows/java.yml @@ -61,7 +61,7 @@ jobs: export CARGO_TARGET_AARCH64_UNKNOWN_LINUX_GNU_LINKER=/usr/bin/aarch64-linux-gnu-gcc cargo build --release --target ${{ matrix.target }} # upload-artifact does not rename the file, so when we download if we don't rename all files will have the same name. - mv -v ../target/release/${{ matrix.buildfile }} ${{ matrix.resfile }} + mv -v ../target/${{ matrix.target }}/release/${{ matrix.buildfile }} ${{ matrix.resfile }} - name: Upload built library uses: actions/upload-artifact@v1