Skip to content

Commit dba931a

Browse files
authored
Update blank.yml
1 parent 22ecb3c commit dba931a

1 file changed

Lines changed: 8 additions & 8 deletions

File tree

.github/workflows/blank.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,39 +1,39 @@
11
name: Deploy Vue (Vite) app to GitHub Pages
2-
2+
33
on:
44
push:
55
branches:
66
- main
7-
7+
88
permissions:
99
contents: read
1010
pages: write
1111
id-token: write
12-
12+
1313
jobs:
1414
build:
1515
runs-on: ubuntu-latest
1616
steps:
1717
- name: Checkout repository
1818
uses: actions/checkout@v4
19-
19+
2020
- name: Setup Node
2121
uses: actions/setup-node@v4
2222
with:
2323
node-version: 20
24-
24+
2525
- name: Install dependencies
2626
run: npm ci
27-
27+
2828
- name: Build project
2929
run: |
3030
npm run build -- --base=/githubaction/
31-
31+
3232
- name: Upload build output
3333
uses: actions/upload-pages-artifact@v3
3434
with:
3535
path: ./dist
36-
36+
3737
deploy:
3838
needs: build
3939
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)