Skip to content

make installsments work with formatted date on the tables #17

make installsments work with formatted date on the tables

make installsments work with formatted date on the tables #17

Workflow file for this run

name: Deploy
on:
push:
branches:
- master
pull_request:
branches:
- master
workflow_dispatch:
jobs:
deploy:
name: Deploy
runs-on: ubuntu-latest
permissions:
id-token: write # Needed for auth with Deno Deploy
contents: read # Needed to clone the repository
steps:
- name: Clone repository
uses: actions/checkout@v4
- name: Install Deno
uses: denoland/setup-deno@v1
with:
deno-version: v1.x
- name: Build step
env:
ENVIRONMENT: ${{ vars.ENVIRONMENT }}
RESEND_API_KEY: ${{ secrets.RESEND_API_KEY }}
run: "deno task build"
- name: Upload to Deno Deploy
uses: denoland/deployctl@v1
with:
project: "expenso"
entrypoint: "main.ts"
root: "."