Skip to content

Give bag names full width on mobile in Add mode cards (#1) #87

Give bag names full width on mobile in Add mode cards (#1)

Give bag names full width on mobile in Add mode cards (#1) #87

Workflow file for this run

name: Deploy
permissions:
contents: read
on:
push:
tags:
- 'v*'
jobs:
deploy:
runs-on: ubuntu-latest
name: Deploy to Production
steps:
- name: Checkout code
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
- name: Setup Bun
uses: oven-sh/setup-bun@f4d14e03ff726c06358e5557344e1da148b56cf7 # v1
with:
bun-version: latest
- name: Install dependencies
run: bun install --frozen-lockfile
- name: Generate version info
run: bun run version:generate
- name: Build
run: bun run build
env:
PUBLIC_CLERK_PUBLISHABLE_KEY: ${{ secrets.PUBLIC_CLERK_PUBLISHABLE_KEY }}
- name: Run database migrations
run: npx wrangler d1 migrations apply packzen-db --remote
env:
CLOUDFLARE_API_TOKEN: ${{ secrets.CLOUDFLARE_API_TOKEN }}
CLOUDFLARE_ACCOUNT_ID: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }}
- name: Deploy to Cloudflare
run: npx wrangler deploy
env:
CLOUDFLARE_API_TOKEN: ${{ secrets.CLOUDFLARE_API_TOKEN }}
CLOUDFLARE_ACCOUNT_ID: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }}
- name: Deployment complete
env:
TAG_NAME: ${{ github.ref_name }}
run: echo "Successfully deployed tag $TAG_NAME to https://packzen.org"