You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Mar 4, 2021. It is now read-only.
I am still getting EISDIR: illegal operation on a directory, read error despite the fact that I followed solutions in #35. Here is my sample .yml content. Can you please tell me what I am doing wrong? Thanks!
Yes! The main part here is that download-artifact always downloads and unzip files to the target directory. Since I missed unzipping logic, I was pretty confused. I continuously tried to access the zipped file with its explicit name which I specify in upload-artifact step. Instead, I solved this by accessing its unzipped file name. For example;
I upload my artifacts under release-apk name. It is a zip file. Remember, upload-artifact always works with zip operation.
I download the zipped files to the root directory. Remember, the file name is release-apk and path is ./
Previous step downloaded and unzipped the files into the root directory. The file name is my-artifact.apk in my case.
You can use below bash command to list files/folders recursively.
- name: Display structure of downloaded files
run: ls -R
Then I accessed my file with its explicit name(my-artifact.apk) in upload-release-asset step.
Please let me know if you need any help.
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Hello,
I am still getting
EISDIR: illegal operation on a directory, read
error despite the fact that I followed solutions in #35. Here is my sample.yml
content. Can you please tell me what I am doing wrong? Thanks!The text was updated successfully, but these errors were encountered: