Skip to content
This repository was archived by the owner on Sep 21, 2025. It is now read-only.

Merge pull request #75 from hjbugajski/chore/dependencies #63

Merge pull request #75 from hjbugajski/chore/dependencies

Merge pull request #75 from hjbugajski/chore/dependencies #63

Workflow file for this run

name: Firebase Deploy
on:
workflow_dispatch:
push:
branches:
- main
jobs:
build:
name: Build and Deploy
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install pnpm
uses: pnpm/action-setup@v4
with:
version: 9.15.1
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 20
cache: pnpm
- name: Install dependencies
run: |
pnpm install
pnpm install -g firebase-tools
- name: Build
run: pnpm build
- name: Deploy
run: firebase deploy --token "$FIREBASE_TOKEN" --only hosting:app-applicationtrackr
env:
FIREBASE_TOKEN: ${{ secrets.FIREBASE_TOKEN }}