Redeploy App #16
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: Redeploy App | |
on: | |
workflow_dispatch: | |
permissions: read-all | |
jobs: | |
redeploy_dev: | |
name: Rebuild and Deploy to Production | |
if: ${{ github.repository == 'sws2apps/organized-app' && github.ref == 'refs/heads/main' }} | |
environment: | |
name: Production | |
url: https://organized-app.com | |
runs-on: ubuntu-latest | |
permissions: | |
contents: 'read' | |
id-token: 'write' | |
steps: | |
- name: Checkout for release preparation | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 | |
with: | |
ref: main | |
persist-credentials: false | |
- name: Use Node.js LTS version | |
uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af | |
with: | |
node-version: lts/Iron | |
- name: Install package dependencies | |
run: npm ci && npm i -D @rollup/rollup-linux-x64-gnu | |
- name: Rebuild App | |
run: npm run build | |
env: | |
VITE_FIREBASE_APIKEY: ${{ secrets.VITE_FIREBASE_APIKEY }} | |
VITE_FIREBASE_AUTHDOMAIN: ${{ secrets.VITE_FIREBASE_AUTHDOMAIN }} | |
VITE_FIREBASE_PROJECTID: ${{ vars.VITE_FIREBASE_PROJECTID }} | |
VITE_FIREBASE_APPID: ${{ secrets.VITE_FIREBASE_APPID }} | |
- name: Check if new version has been generated | |
id: check_build | |
uses: andstor/file-existence-action@076e0072799f4942c8bc574a82233e1e4d13e9d6 | |
with: | |
files: 'dist' | |
- name: Deploy to Firebase | |
if: ${{ steps.check_build.outputs.files_exists == 'true' }} | |
uses: sws2apps/firebase-deployment@f4e1803b78ce7c1b136c532f793c15eb34559b0e | |
with: | |
workloadIdentityProvider: ${{ secrets.WORKLOAD_IDENTITY_PROVIDER }} | |
serviceAccount: ${{ secrets.SERVICE_ACCOUNT }} | |
project: organized-sws |