Add content for CoC and security #38
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: Build and deploy app | |
on: | |
push | |
jobs: | |
build_and_deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Set up Deno | |
uses: denoland/setup-deno@v2 | |
with: | |
deno-version: v2.3.5 | |
- name: Build Deno SPA | |
run: | | |
deno install --allow-scripts --reload | |
VITE_API_URL=${{ vars.VITE_API_URL }} VITE_GOOGLE_ANALYTICS_ID=${{ vars.VITE_GOOGLE_ANALYTICS_ID }} deno task build:app | |
- name: Deploy to Firebase | |
# only deploy on main branch | |
if: github.ref == 'refs/heads/main' | |
uses: FirebaseExtended/action-hosting-deploy@v0 | |
with: | |
entryPoint: "./packages/app" | |
repoToken: ${{ secrets.GITHUB_TOKEN }} | |
firebaseServiceAccount: ${{ secrets.FIREBASE_SERVICE_ACCOUNT_NANOAPI_INFRA_PRODUCTION }} | |
channelId: live | |
projectId: nanoapi-infra-production |