We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 94f2446 commit b8611cfCopy full SHA for b8611cf
.github/workflows/ci.yml
@@ -41,6 +41,8 @@ jobs:
41
- uses: actions/checkout@v3
42
- name: Select Xcode 15.0.1
43
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
46
- name: Build examples
47
run: make build-examples
48
Examples/Examples/_Secrets.swift
@@ -1,6 +1,6 @@
1
import Foundation
2
3
enum Secrets {
4
- static let supabaseURL = URL(string: "SUPABASE_URL")!
+ static let supabaseURL = URL(string: "http://localhost:54321")!
5
static let supabaseAnonKey = "SUPABASE_ANON_KEY"
6
}
0 commit comments