Skip to content

Commit b8611cf

Browse files
author
Guilherme Souza
committed
Prepare examples project for running on CI
1 parent 94f2446 commit b8611cf

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,8 @@ jobs:
4141
- uses: actions/checkout@v3
4242
- name: Select Xcode 15.0.1
4343
run: sudo xcode-select -s /Applications/Xcode_15.0.1.app
44+
- name: Prepare Examples Project
45+
run: cp Examples/Examples/_Secrets.swift Examples/Examples/Secrets.swift
4446
- name: Build examples
4547
run: make build-examples
4648

Examples/Examples/_Secrets.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import Foundation
22

33
enum Secrets {
4-
static let supabaseURL = URL(string: "SUPABASE_URL")!
4+
static let supabaseURL = URL(string: "http://localhost:54321")!
55
static let supabaseAnonKey = "SUPABASE_ANON_KEY"
66
}

0 commit comments

Comments
 (0)