Skip to content

Commit 4a2a1ee

Browse files
authored
Update carbon-aware-deploy.yml
1 parent 9eb1e9e commit 4a2a1ee

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

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

+5-5
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,7 @@ on:
88
jobs:
99
deploy:
1010
name: Deploy app
11-
runs-on: ubuntu-latest
12-
13-
concurrency: deploy-group # Optional: prevent parallel deployments
11+
runs-on: carbonrunner-1vcpu-ubuntu-latest # Use CarbonRunner for eco-friendly CI/CD
1412

1513
steps:
1614
- name: Checkout Code
@@ -20,7 +18,7 @@ jobs:
2018
run: npm install
2119

2220
- name: Build Astro Site
23-
run: npm run build # Generate static files in 'dist/'
21+
run: npm run build # Generates static files in 'dist/'
2422

2523
- name: Install Flyctl
2624
uses: superfly/flyctl-actions/setup-flyctl@master
@@ -37,6 +35,8 @@ jobs:
3735
echo "CLEAN_REGION=$CLEAN_REGION" >> $GITHUB_ENV
3836
3937
- name: Deploy to Fly.io
40-
run: flyctl deploy --remote-only --regions $CLEAN_REGION --buildpack static
38+
run: |
39+
echo "Deploying to region: $CLEAN_REGION"
40+
flyctl deploy --remote-only --regions $CLEAN_REGION
4141
env:
4242
FLY_API_TOKEN: ${{ secrets.FLY_API_TOKEN }}

0 commit comments

Comments
 (0)