Hi @Lucien Moy ,
I'm glad that you were able to resolve your issue and thank you for posting your solution so that others experiencing the same thing can easily reference this! Since the Microsoft Q&A community has a policy that "The question author cannot accept their own answer. They can only accept answers by others ", I'll repost your solution in case you'd like to accept the answer.
I found a fix, I now run this in my Github Action :
BashCopy
`# * Zip up` `zip -r new-zip-file-name.zip . -x` `"*.git*"` `-x` `"*.pytest_cache*"` `-x` `"*.venv*"` `-x` `"*.vscode*"` `-x` `"*.idea*"` `-x` `"*.DS_Store"` `-x` `"*__pycache__*"` `-x` `"*.pyc"` `-x` `"zz-notes/*"` `-x` `"local.settings.json"`
`# * Deploy to az function` `az functionapp deployment` `source` `config-zip -g {{ rg }} -n {{app name}} --src new-zip-file-name.zip`
If the answer is helpful, please click Accept Answer and kindly upvote it so that other people who faces similar issue may get benefitted from it.