fix: Handle already-active version error in Firebase deploy #11
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 to Firebase Hosting on merge | |
| on: | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| build_and_deploy: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: '22' | |
| cache: 'npm' | |
| - name: Install and build | |
| run: npm ci && npm run build | |
| - name: Authenticate to Google Cloud | |
| uses: google-github-actions/auth@v2 | |
| with: | |
| credentials_json: ${{ secrets.FIREBASE_SERVICE_ACCOUNT_REACT_VITE_TAILWIND_TEMPLATE }} | |
| - name: Deploy to Firebase Hosting | |
| run: | | |
| OUTPUT=$(npx firebase-tools@latest deploy --only hosting --project react-vite-tailwind-template --non-interactive 2>&1) | |
| DEPLOY_EXIT=$? | |
| echo "$OUTPUT" | |
| if [ $DEPLOY_EXIT -ne 0 ]; then | |
| echo "$OUTPUT" | grep -q "is the current active version" || exit $DEPLOY_EXIT | |
| echo "Skipping: already the current active version." | |
| fi |