chore(deps): bump github/codeql-action from 3.25.8 to 4.32.0 (#1313) #1365
This file contains hidden or 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 Next Docs | |
| on: | |
| push: | |
| branches: | |
| - 'main' | |
| # Allows you to run this workflow manually from the Actions tab | |
| workflow_dispatch: | |
| permissions: read-all | |
| jobs: | |
| build: | |
| name: Build | |
| runs-on: ubuntu-latest | |
| if: ${{ github.repository_owner == 'koobiq' }} | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Setup Node | |
| uses: ./.github/workflows/actions/setup-node | |
| - name: Build packages | |
| uses: ./.github/workflows/actions/build-packages | |
| - uses: ./.github/workflows/actions/build-docs | |
| - name: Deploy | |
| uses: FirebaseExtended/action-hosting-deploy@v0 | |
| with: | |
| repoToken: '${{ secrets.GITHUB_TOKEN }}' | |
| firebaseServiceAccount: '${{ secrets.FIREBASE_SERVICE_ACCOUNT_KOOBIQ }}' | |
| firebaseToolsVersion: '15.3.1' | |
| projectId: koobiq | |
| target: next | |
| channelId: live |