Open tesar-tech opened 4 years ago
I am trying to update just the metedata for my app. Since packagePath is optional, this should work:
packagePath
steps: - task: store-publish@0 inputs: serviceEndpoint: 'NaWinDevCenter' appId: '9PH5NNZ5BXFQ' metadataUpdateMethod: 'JsonMetadata' metadataPath: '$(system.defaultworkingdirectory)\NoApp\Store\appMetadata' updateImages: true force: true skipPolling: true
It throws ##[error]Unhandled: EISDIR: illegal operation on a directory, read . This error is already discussed here https://github.com/microsoft/windows-dev-center-vsts-extension/issues/33 and after turning on the debug mode I found this:
##[error]Unhandled: EISDIR: illegal operation on a directory, read
##[debug]Adding package path d:/a/1/s to zip as 0_s
So the issue is probably caused by d:/a/1/s - it is not a file.
d:/a/1/s
But what are my options here, if I don't want to add the package ???
The solution could be filled packagePath. Extension doesn't find any .msix, but is ok with that and submission will update just the listing.
.msix
I am trying to update just the metedata for my app. Since
packagePath
is optional, this should work:It throws
##[error]Unhandled: EISDIR: illegal operation on a directory, read
. This error is already discussed here https://github.com/microsoft/windows-dev-center-vsts-extension/issues/33 and after turning on the debug mode I found this:##[debug]Adding package path d:/a/1/s to zip as 0_s
So the issue is probably caused by
d:/a/1/s
- it is not a file.But what are my options here, if I don't want to add the package ???