Remove references of P1 Meter 6.00xx being in beta #247
Workflow file for this run
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 preview on pull request | |
| on: pull_request | |
| jobs: | |
| build_and_preview: | |
| if: '${{ github.event.pull_request.head.repo.full_name == github.repository }}' | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: 20.9.0 | |
| cache: 'npm' | |
| - run: npm ci | |
| - run: npm run build | |
| - uses: FirebaseExtended/action-hosting-deploy@v0 | |
| with: | |
| repoToken: '${{ secrets.GITHUB_TOKEN }}' | |
| firebaseServiceAccount: '${{ secrets.FIREBASE_SERVICE_ACCOUNT_HW_API_DOCUMENTATION }}' | |
| projectId: hw-api-documentation |