File tree 1 file changed +5
-9
lines changed
1 file changed +5
-9
lines changed Original file line number Diff line number Diff line change @@ -34,17 +34,13 @@ jobs:
34
34
CLEAN_REGION=$(echo "$RESPONSE" | jq -r '.regions | sort_by(.intensity) | .[0].id')
35
35
echo "CLEAN_REGION=$CLEAN_REGION" >> $GITHUB_ENV
36
36
37
- - name : Scale Down Existing Machines
37
+ - name : Scale Machines in Clean Region
38
38
run : |
39
- echo "Destroying existing machines..."
40
- flyctl machines list -q | awk '{gsub(/[^a-zA-Z0-9-]/,"")}1' | xargs -I {} flyctl machine destroy {} --force
41
- env :
42
- FLY_API_TOKEN : ${{ secrets.FLY_API_TOKEN }}
39
+ echo "Scaling down machines in all regions..."
40
+ flyctl scale count 0
43
41
44
- - name : Reset Regions Before Deployment
45
- run : |
46
- echo "Resetting regions to clean region: $CLEAN_REGION"
47
- flyctl regions set $CLEAN_REGION
42
+ echo "Scaling up machines in region: $CLEAN_REGION"
43
+ flyctl scale count 1 --region $CLEAN_REGION
48
44
env :
49
45
FLY_API_TOKEN : ${{ secrets.FLY_API_TOKEN }}
50
46
You can’t perform that action at this time.
0 commit comments