Skip to content

Commit

Permalink
node version up
Browse files Browse the repository at this point in the history
  • Loading branch information
omiend committed Sep 26, 2023
1 parent 7430797 commit a22e6a4
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/production-firebase-hosting-merge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# https://github.com/firebase/firebase-tools

name: Deploy to Firebase Hosting on production
'on':
"on":
push:
branches:
- production
Expand All @@ -13,14 +13,14 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: 14
node-version: 16
- name: Install npm modules
run: yarn install
- name: Build app
run: yarn predeploy
- uses: FirebaseExtended/action-hosting-deploy@v0
with:
repoToken: '${{ secrets.GITHUB_TOKEN }}'
repoToken: "${{ secrets.GITHUB_TOKEN }}"
firebaseServiceAccount: ${{ secrets.FIREBASE_SERVICE_ACCOUNT_SCALAMATSURI_2023_WEB }}
channelId: live
projectId: scalamatsuri-2023-web
6 changes: 3 additions & 3 deletions .github/workflows/staging-firebase-hosting-merge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# https://github.com/firebase/firebase-tools

name: Deploy to Firebase Hosting on staging
'on':
"on":
push:
branches:
- master
Expand All @@ -13,14 +13,14 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: 14
node-version: 16
- name: Install npm modules
run: yarn install
- name: Build app
run: yarn predeploy
- uses: FirebaseExtended/action-hosting-deploy@v0
with:
repoToken: '${{ secrets.GITHUB_TOKEN }}'
repoToken: "${{ secrets.GITHUB_TOKEN }}"
firebaseServiceAccount: ${{ secrets.FIREBASE_SERVICE_ACCOUNT_SCALAMATSURI_2023_WEB_STAGE }}
channelId: live
projectId: scalamatsuri-2023-web-stage

0 comments on commit a22e6a4

Please sign in to comment.