File tree Expand file tree Collapse file tree 2 files changed +7
-1
lines changed Expand file tree Collapse file tree 2 files changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -16,6 +16,12 @@ git config --global user.name "$TAGGER_NAME"
16
16
set +e
17
17
ddev release tag all --skip-prerelease
18
18
status=$?
19
+ # If we fail to fetch tags, fallback to the old behavior of getting list of tags even if they're not fetched
20
+ if [[ $status -eq 3 ]]; then
21
+ echo " Failed to fetch tags, falling back to list tags without fetching"
22
+ ddev release tag all --skip-prerelease --no-fetch
23
+ status=$?
24
+ fi
19
25
set -e
20
26
21
27
# Only build packages if there were new releases
Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ dependencies = [
29
29
" click~=8.1.6" ,
30
30
" coverage" ,
31
31
" datadog-api-client==2.20.0" ,
32
- " datadog-checks-dev[cli]~=35.0 " ,
32
+ " datadog-checks-dev[cli]~=35.1 " ,
33
33
" hatch>=1.8.1" ,
34
34
" httpx" ,
35
35
" jsonpointer" ,
You can’t perform that action at this time.
0 commit comments