diff --git a/.github/actions/create_manifest/action.yml b/.github/actions/create_manifest/action.yml index 815ad83b6b627a..833b7114daf863 100644 --- a/.github/actions/create_manifest/action.yml +++ b/.github/actions/create_manifest/action.yml @@ -27,13 +27,13 @@ runs: - name: Install Python dependencies shell: ${{ runner.os == 'Windows' && 'pwsh' || 'bash' }} run: >- - pip install -r "${{ inputs.action_path && inputs.action_path || github.action_path }}/requirements.txt" + pip install -r ${{ env.GITHUB_ACTION_PATH }}/requirements.txt - name: 'Create manifest' id: create_manifest shell: ${{ runner.os == 'Windows' && 'pwsh' || 'bash' }} run: >- - python ${{ inputs.action_path && inputs.action_path || github.action_path }}/create_manifest.py + python ${{ env.GITHUB_ACTION_PATH }}/create_manifest.py --target_arch "${{ inputs.target_arch }}" --build_type "${{ inputs.build_type }}" --save_to "${{ inputs.save_to }}" --product_type "${{ inputs.product_type }}" -r "${{ inputs.repos }}" env: diff --git a/.github/actions/store_artifacts/action.yml b/.github/actions/store_artifacts/action.yml index 70795d5d9c20bb..8e647859f37381 100644 --- a/.github/actions/store_artifacts/action.yml +++ b/.github/actions/store_artifacts/action.yml @@ -26,13 +26,13 @@ runs: - name: Install Python dependencies shell: ${{ runner.os == 'Windows' && 'pwsh' || 'bash' }} run: >- - pip install -r "${{ inputs.action_path && inputs.action_path || github.action_path }}/requirements.txt" + pip install -r ${{ env.GITHUB_ACTION_PATH }}/requirements.txt - name: 'Copy artifacts' id: copy_artifacts shell: ${{ runner.os == 'Windows' && 'pwsh' || 'bash' }} run: >- - python ${{ inputs.action_path && inputs.action_path || github.action_path }}/store_artifacts.py + python ${{ env.GITHUB_ACTION_PATH }}/store_artifacts.py --storage_dir "${{ inputs.storage_dir }}" --storage_root "${{ inputs.storage_root }}" -a "${{ inputs.artifacts }}" env: diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index baba65366cad60..22b57073a3a005 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -145,7 +145,6 @@ jobs: repos: | ${{ env.OPENVINO_REPO }} ${{ env.OPENVINO_CONTRIB_REPO }} - action_path: ${{ env.GITHUB_WORKSPACE }}/openvino/.github/actions/create_manifest product_type: ${{ env.PRODUCT_TYPE }} target_arch: 'intel64' build_type: 'release' @@ -338,7 +337,6 @@ jobs: ${{ env.MANIFEST_PATH }} storage_dir: ${{ env.PRODUCT_TYPE }} storage_root: ${{ env.ARTIFACTS_SHARE }} - action_path: ${{ env.GITHUB_WORKSPACE }}/openvino/.github/actions/store_artifacts Debian_Packages: name: Debian Packages diff --git a/.github/workflows/linux_arm64.yml b/.github/workflows/linux_arm64.yml index a69529c1e47a57..5da0c9eed5fe29 100644 --- a/.github/workflows/linux_arm64.yml +++ b/.github/workflows/linux_arm64.yml @@ -131,7 +131,6 @@ jobs: repos: | ${{ env.OPENVINO_REPO }} ${{ env.OPENVINO_CONTRIB_REPO }} - action_path: ${{ env.GITHUB_WORKSPACE }}/openvino/.github/actions/create_manifest product_type: ${{ env.PRODUCT_TYPE }} target_arch: 'aarch64' build_type: 'release' @@ -322,7 +321,6 @@ jobs: ${{ env.MANIFEST_PATH }} storage_dir: ${{ env.PRODUCT_TYPE }} storage_root: ${{ env.ARTIFACTS_SHARE }} - action_path: ${{ env.GITHUB_WORKSPACE }}/openvino/.github/actions/store_artifacts Debian_Packages: name: Debian Packages diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index 019f4ea0f2bcfe..3f8dd95a35b752 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -100,7 +100,6 @@ jobs: repos: | ${{ env.OPENVINO_REPO }} ${{ env.OPENVINO_CONTRIB_REPO }} - action_path: ${{ github.workspace }}/openvino/.github/actions/create_manifest product_type: ${{ env.PRODUCT_TYPE }} target_arch: 'intel64' build_type: 'release' @@ -267,7 +266,6 @@ jobs: ${{ env.MANIFEST_PATH }} storage_dir: ${{ env.PRODUCT_TYPE }} storage_root: ${{ env.ARTIFACTS_SHARE }} - action_path: ${{ github.workspace }}/openvino/.github/actions/store_artifacts Samples: needs: [ Build, Smart_CI ]