diff --git a/.github/workflows/server-buildpackage-rust.child.yaml b/.github/workflows/server-buildpackage-rust.child.yaml index b32f2f0e4..739ba4e82 100644 --- a/.github/workflows/server-buildpackage-rust.child.yaml +++ b/.github/workflows/server-buildpackage-rust.child.yaml @@ -67,4 +67,4 @@ jobs: uses: "actions/upload-artifact@0b7f8abb1508181956e8e162db84b466c27e18ce" # v3.1.2 with: name: "artifacts" - path: "${{ inputs.directory }}/*.*deb" + path: "${{ inputs.directory }}*.*deb" diff --git a/ci-scripts/ci_job_package_gst_rust_debian.sh b/ci-scripts/ci_job_package_gst_rust_debian.sh index 221f52e67..d0d79e649 100755 --- a/ci-scripts/ci_job_package_gst_rust_debian.sh +++ b/ci-scripts/ci_job_package_gst_rust_debian.sh @@ -84,6 +84,7 @@ set -o xtrace # Check out the requested branch GST_RUST_PACKAGE="gst-plugin-rtp" +CURRENT_PWD=$PWD # Apply diff to generate deb package if [ -d xxtmpRepoxx ]; then rm -rf xxtmpRepoxx; fi @@ -115,7 +116,7 @@ fi # ----- docker run --pull always --rm \ - --mount type=bind,src="$PWD",dst=/hostdir \ + --mount type=bind,src="$CURRENT_PWD",dst=/hostdir \ --mount type=bind,src="$KURENTO_SCRIPTS_HOME",dst=/ci-scripts \ --mount type=bind,src="${INSTALL_PATH:-$PWD}",dst=/packages \ "kurento/rust-buildpackage:${JOB_DISTRO}" \