Merge pull request #347 from scalamatsuri/OpenMicConrefenceUpdatedDayOne #214
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Deploy to Firebase Hosting on staging | |
'on': | |
push: | |
branches: | |
- master | |
jobs: | |
build_and_deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 18 | |
# - name: yarn version stable | |
# run: yarn set version stable | |
- name: Install npm modules | |
run: yarn install | |
- name: Build app | |
run: yarn generate | |
- uses: FirebaseExtended/action-hosting-deploy@v0 | |
with: | |
repoToken: '${{ secrets.GITHUB_TOKEN }}' | |
firebaseServiceAccount: ${{ secrets.FIREBASE_SERVICE_ACCOUNT_SCALAMATSURI_2024_WEB_STAGING }} | |
channelId: live | |
projectId: scalamatsuri-2024-web-staging |