Closed xSAVIKx closed 3 months ago
Hi there - could you please provide the debug output for the complete GitHub Actions workflow run? Sorry, I missed the link.
The gcloud
command that is running is:
gcloud run deploy <SERVICE_NAME> --image europe-west2-docker.pkg.dev/***/docker-registry/<CONTAINER_NAME>:fb-39 --tag fb-39 --no-traffic --timeout 6s --format json --region europe-west2 --project ***
Given that, I think this could be a gcloud bug then? Are you able to reproduce this issue using just the gcloud
CLI?
Hey @sethvargo, yeah it looks like it's on the gcloud
, not the action itself while the action is only prepping the CLI command.
I don't have a way to reproduce this with just the CLI right now, but will try to some time soon hopefully.
Okay thanks - if you can reproduce it via the gcloud CLI, you can file a bug at: https://cloud.google.com/sdk/docs/getting-support
You can temporarily set gcloud_version
input option to the last working version.
Hi there - I'm going to close this out since it's been about a month without a response. If this is still happening, please provide output that shows this working with the gcloud
command but failing in the GitHub Action. Thanks!
TL;DR
latest
and other tags are applied to recently deployed revision even whentag
is set to a specific value andno-traffic
is used.prod
tag should have stayed at the previous revision where 100% of traffic iswf-logs.txt
Expected behavior
Only the specified
tag
is addedObserved behavior
all tags from the previous "latest" are moved to the newly deployed revision
Action YAML
Log output
Additional information
I'm trying to implement feature branch deployments where the main infra setup is managed by Pulumi/terraform and feature branches are deployed with GH action.