Skip to content

Commit 495e3d7

Browse files
committed
chore
1 parent 088c9d2 commit 495e3d7

File tree

2 files changed

+18
-4
lines changed

2 files changed

+18
-4
lines changed

.github/workflows/build-reusable.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,17 @@ on:
66
build_output: # Changed from build-output to build_output for consistency
77
description: "Build output artifact"
88
value: ${{ jobs.build.outputs.build_output }}
9+
secrets:
10+
NEXT_PUBLIC_CONVEX_URL:
11+
required: true
12+
CONVEX_DEPLOYMENT:
13+
required: true
14+
CLERK_SECRET_KEY:
15+
required: true
16+
NEXT_PUBLIC_CLERK_PUBLISHABLE_KEY:
17+
required: true
18+
LIVE_BLOCK_SECRET_API_KEY:
19+
required: true
920
jobs:
1021
build:
1122
name: "Build"

.github/workflows/build.yml

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,15 @@
11
name: Build Application
22

33
on:
4-
pull_request:
5-
types: [closed]
6-
branches: [main]
4+
# pull_request:
5+
# types: [closed]
6+
# branches: [main]
7+
push:
8+
branches:
9+
- development
710
jobs:
811
build:
9-
if: github.event.pull_request.merged == true
12+
# if: github.event.pull_request.merged == true
1013
name: Build Application
1114
uses: ./.github/workflows/build-reusable.yml
1215
secrets:

0 commit comments

Comments
 (0)