deploy-appengine
deploy-appengine copied to clipboard
Support beta flag for deployments
TL;DR
Just add a flag in the configuration to run gcloud beta app deploy
Detailed design
This would be an enhancement in order to deploy beta versions of code with this action, and I don't see any workaround with this action, instead, I had to use google-github-actions/setup-gcloud@v0 and make it all manually.
Additional information
Maybe a config like this?
- id: 'deploy'
name: 'Deploy beta version '
uses: 'google-github-actions/deploy-appengine@v0'
with:
beta: true
promote: false