File tree 1 file changed +5
-5
lines changed
1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change 8
8
jobs :
9
9
deploy :
10
10
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
14
12
15
13
steps :
16
14
- name : Checkout Code
20
18
run : npm install
21
19
22
20
- name : Build Astro Site
23
- run : npm run build # Generate static files in 'dist/'
21
+ run : npm run build # Generates static files in 'dist/'
24
22
25
23
- name : Install Flyctl
26
24
uses : superfly/flyctl-actions/setup-flyctl@master
37
35
echo "CLEAN_REGION=$CLEAN_REGION" >> $GITHUB_ENV
38
36
39
37
- 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
41
41
env :
42
42
FLY_API_TOKEN : ${{ secrets.FLY_API_TOKEN }}
You can’t perform that action at this time.
0 commit comments