File tree Expand file tree Collapse file tree 2 files changed +33
-1
lines changed Expand file tree Collapse file tree 2 files changed +33
-1
lines changed Original file line number Diff line number Diff line change
1
+ name : Deploy to GitHub Pages
2
+
3
+ on :
4
+ push :
5
+ branches : [main]
6
+ workflow_dispatch :
7
+
8
+ permissions :
9
+ contents : read
10
+ pages : write
11
+ id-token : write
12
+
13
+ jobs :
14
+ build :
15
+ runs-on : ubuntu-latest
16
+ steps :
17
+ - uses : actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
18
+ - name : Build the Astro site
19
+ uses : withastro/action@acfe56dffc635abfb9506c77d51ce097030360d1 # v2.0.0
20
+
21
+ deploy :
22
+ needs : build
23
+ runs-on : ubuntu-latest
24
+ environment :
25
+ name : github-pages
26
+ url : ${{ steps.deployment.outputs.page_url }}
27
+ steps :
28
+ - name : Deploy to GitHub Pages
29
+ id : deployment
30
+ uses : actions/deploy-pages@decdde0ac072f6dcbe43649d82d9c635fff5b4e4 # v4.0.4
Original file line number Diff line number Diff line change 1
1
import { defineConfig } from 'astro/config' ;
2
2
3
3
// https://astro.build/config
4
- export default defineConfig ( { } ) ;
4
+ export default defineConfig ( {
5
+ site : 'https://magic-spreadsheets.github.io' ,
6
+ } ) ;
You can’t perform that action at this time.
0 commit comments