Skip to content

Commit

Permalink
Try fixing auto-deploy
Browse files Browse the repository at this point in the history
  • Loading branch information
de-ich committed Dec 20, 2023
1 parent 29ff512 commit 30005a7
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/firebase-hosting-merge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: npm ci && npm run build
- run: npm ci && npm run sync && npm run prepare && npm run build
- uses: FirebaseExtended/action-hosting-deploy@v0
with:
repoToken: '${{ secrets.GITHUB_TOKEN }}'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/firebase-hosting-pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: npm ci && npm run build
- run: npm ci && npm run sync && npm run prepare && npm run build
- uses: FirebaseExtended/action-hosting-deploy@v0
with:
repoToken: '${{ secrets.GITHUB_TOKEN }}'
Expand Down
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@
"format": "prettier --plugin-search-dir . --write .",
"prepare": "npm run smui-theme-light",
"smui-theme-light": "smui-theme compile static/smui.css -i src/theme",
"start-emulators": "firebase emulators:start"
"start-emulators": "firebase emulators:start",
"sync": "svelte-kit sync"
},
"devDependencies": {
"@playwright/test": "^1.36.0",
Expand Down

0 comments on commit 30005a7

Please sign in to comment.