Skip to content

Commit b54dee3

Browse files
authored
Update carbon-aware-deploy.yml
1 parent caf1cac commit b54dee3

File tree

1 file changed

+5
-9
lines changed

1 file changed

+5
-9
lines changed

.github/workflows/carbon-aware-deploy.yml

+5-9
Original file line numberDiff line numberDiff line change
@@ -34,17 +34,13 @@ jobs:
3434
CLEAN_REGION=$(echo "$RESPONSE" | jq -r '.regions | sort_by(.intensity) | .[0].id')
3535
echo "CLEAN_REGION=$CLEAN_REGION" >> $GITHUB_ENV
3636
37-
- name: Scale Down Existing Machines
37+
- name: Scale Machines in Clean Region
3838
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
4341
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
4844
env:
4945
FLY_API_TOKEN: ${{ secrets.FLY_API_TOKEN }}
5046

0 commit comments

Comments
 (0)