Skip to content
This repository was archived by the owner on May 5, 2025. It is now read-only.

Commit 8be8ea8

Browse files
committed
fix: update JDK version to 21 and uncomment setup step in build workflow
1 parent 5853295 commit 8be8ea8

File tree

1 file changed

+10
-5
lines changed

1 file changed

+10
-5
lines changed

.github/workflows/build.yml

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,15 +20,20 @@ jobs:
2020
with:
2121
node-version: 20
2222

23-
# - name: Set up JDK 17
24-
# uses: actions/setup-java@v4
25-
# with:
26-
# java-version: 17
27-
# distribution: temurin
23+
- name: Set up JDK 17
24+
uses: actions/setup-java@v4
25+
with:
26+
java-version: 21
27+
distribution: temurin
2828

2929
- name: 🏗 Setup Bun
3030
uses: oven-sh/setup-bun@v2
3131

32+
- name: 📝 Create .env file
33+
run: |
34+
echo "SUPABASE_URL=${{ secrets.SUPABASE_URL }}" >> .env
35+
echo "SUPABASE_KEY=${{ secrets.SUPABASE_KEY }}" >> .env
36+
3237
- name: 📦 Install dependencies
3338
run: bun install
3439

0 commit comments

Comments
 (0)