File tree Expand file tree Collapse file tree 2 files changed +8
-10
lines changed Expand file tree Collapse file tree 2 files changed +8
-10
lines changed Original file line number Diff line number Diff line change @@ -5,9 +5,6 @@ on: [push]
5
5
jobs :
6
6
build :
7
7
runs-on : ubuntu-latest
8
- env :
9
- VITE_APP_AIRTABLE_API_KEY : ${{ secrets.VITE_APP_AIRTABLE_API_KEY }}
10
- VITE_APP_AIRTABLE_BASE : ${{ secrets.VITE_APP_AIRTABLE_BASE }}
11
8
12
9
steps :
13
10
- name : 🛎️ Checkout code
23
20
run : npm ci
24
21
25
22
- name : 🏗️ Build
26
- run : npm run build
27
-
23
+ run : |
24
+ touch .env
25
+ echo VITE_APP_AIRTABLE_API_KEY=$VITE_APP_AIRTABLE_API_KEY >> .env
26
+ echo VITE_APP_AIRTABLE_BASE=$secrets.VITE_APP_AIRTABLE_BASE >> .env
27
+ npm run build
28
+ env :
29
+ VITE_APP_AIRTABLE_API_KEY : ${{ secrets.VITE_APP_AIRTABLE_API_KEY }}
30
+ VITE_APP_AIRTABLE_BASE : ${{ secrets.VITE_APP_AIRTABLE_BASE }}
28
31
- name : 🚀 Deploy to GitHub Pages
29
32
if : github.ref == 'refs/heads/main'
30
33
uses : peaceiris/actions-gh-pages@v4
Original file line number Diff line number Diff line change @@ -7,21 +7,16 @@ export {}
7
7
/* prettier-ignore */
8
8
declare module 'vue' {
9
9
export interface GlobalComponents {
10
- BButton : typeof import ( 'bootstrap-vue-next/components/BButton' ) [ 'BButton' ]
11
10
BCard : typeof import ( 'bootstrap-vue-next/components/BCard' ) [ 'BCard' ]
12
11
BCardGroup : typeof import ( 'bootstrap-vue-next/components/BCard' ) [ 'BCardGroup' ]
13
12
BCardText : typeof import ( 'bootstrap-vue-next/components/BCard' ) [ 'BCardText' ]
14
13
BCardTitle : typeof import ( 'bootstrap-vue-next/components/BCard' ) [ 'BCardTitle' ]
15
14
BCollapse : typeof import ( 'bootstrap-vue-next/components/BCollapse' ) [ 'BCollapse' ]
16
- BDropdownItem : typeof import ( 'bootstrap-vue-next/components/BDropdown' ) [ 'BDropdownItem' ]
17
- BFormInput : typeof import ( 'bootstrap-vue-next/components/BFormInput' ) [ 'BFormInput' ]
18
15
BNavbar : typeof import ( 'bootstrap-vue-next/components/BNavbar' ) [ 'BNavbar' ]
19
16
BNavbarBrand : typeof import ( 'bootstrap-vue-next/components/BNavbar' ) [ 'BNavbarBrand' ]
20
17
BNavbarNav : typeof import ( 'bootstrap-vue-next/components/BNavbar' ) [ 'BNavbarNav' ]
21
18
BNavbarToggle : typeof import ( 'bootstrap-vue-next/components/BNavbar' ) [ 'BNavbarToggle' ]
22
- BNavForm : typeof import ( 'bootstrap-vue-next/components/BNav' ) [ 'BNavForm' ]
23
19
BNavItem : typeof import ( 'bootstrap-vue-next/components/BNav' ) [ 'BNavItem' ]
24
- BNavItemDropdown : typeof import ( 'bootstrap-vue-next/components/BNav' ) [ 'BNavItemDropdown' ]
25
20
FooterBar : typeof import ( './src/components/navigation/FooterBar.vue' ) [ 'default' ]
26
21
HelloWorld : typeof import ( './src/components/HelloWorld.vue' ) [ 'default' ]
27
22
IconCommunity : typeof import ( './src/components/icons/IconCommunity.vue' ) [ 'default' ]
You can’t perform that action at this time.
0 commit comments