Got Unknown packaging: hpi error while pushing the changes

Team,

I got the “Unknown packaging: hpi” error while pushing the changes to my branch in github. It was working perfectly in my machine. For your reference, I am attaching the screenshot below.

Can anyone please help me to solve the problem?

The Jenkinsfile is wrong so it uses java8, which is no longer supported. Seems I missed that when I reviewed your plugin request, sorry for that.
Please open a PR towards the main branch with a single change to Jenkinsfile with following content:

buildPlugin(
        forkCount: '1C', // run this number of tests in parallel for faster feedback.  If the number terminates with a 'C', the value will be multiplied by the number of available CPU cores
        useContainerAgent: true, // Set to `false` if you need to use Docker for containerized tests
        configurations: [
                [platform: 'linux', jdk: 21],
                [platform: 'windows', jdk: 17],
])

No problem @mawinter69 . I will do it and let you know.

@mawinter69 A pull request has been opened for the main branch.