Skip to content

Commit

Permalink
Merge pull request #1320 from andrew-bierman/andrew_testing
Browse files Browse the repository at this point in the history
Andrew testing
  • Loading branch information
taronaleksanian authored Oct 22, 2024
2 parents 0f2b504 + f3e4066 commit e842b30
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 9 deletions.
3 changes: 3 additions & 0 deletions .github/actions/setup-wrangler-toml-and-dotenv/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,9 @@ inputs:
DB_ID:
description: 'The database ID'
required: true
MIGRATIONS_PATH:
description: 'Migrations path'
required: true
GOOGLE_CLIENT_ID:
description: 'Google Client ID'
required: true
Expand Down
15 changes: 10 additions & 5 deletions .github/workflows/eas-cloud.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
# Native production pipeline
# Native production pipeline
# Builds on EAS Cloud with auto submission
name: EAS Build & Submit

on:
workflow_dispatch:
workflow_dispatch:
push:
branches:
branches:
- main
paths:
- 'packages/app/**'
Expand All @@ -29,7 +29,12 @@ jobs:
uses: ./.github/actions/setup-eas
with:
expo-token: ${{ secrets.EXPO_TOKEN }}


- name: Inject `ascAppId` into `eas.json`
shell: bash
working-directory: ${{ github.workspace }}/apps/expo
run: echo "$(jq '.submit.production.ios.ascAppId = "${{ secrets.ASC_APP_ID }}"' eas.json)" > eas.json

- name: Build on EAS
working-directory: ./apps/expo
run: eas build --platform all --profile production --non-interactive --no-wait --auto-submit
run: eas build --platform all --profile production --non-interactive --no-wait --auto-submit
4 changes: 0 additions & 4 deletions server/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -57,10 +57,6 @@ app.use('*', async (c, next) => {
return corsMiddleware(c, next);
});

// SETUP LOGGING
// tRPC is already logging requests, but you can add your own middleware
// app.use('*', logger());

// SETUP TRPC SERVER
app.use(`${TRPC_API_ENDPOINT}/*`, honoTRPCServer({ router: appRouter }));

Expand Down

0 comments on commit e842b30

Please sign in to comment.