Hello! I want to create continuous delivery with GitHub Actions for test
Apps Script project. Now the following Bash script is intended to install clasp and deploy project:
npm install -g @google/clasp
clasp login --creds <(echo "${{ secrets.CREDS }}")
clasp deploy --description "Sample deploy-test."The problem is it fails with:
Manifest: /home/emilyseville7cfg/Documents/self-development/console-utils/google-script/deploy-test/appsscript.json invalid. `create` or `clone` a project first.What's the best way to solve this problem? Is it the best option change
rootDir via
jq for example each time GitHub Actions are run?