Skip to content

Commit

Permalink
Prepare examples project for running on CI
Browse files Browse the repository at this point in the history
  • Loading branch information
grdsdev committed Dec 17, 2023
1 parent 94f2446 commit b8611cf
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,8 @@ jobs:
- uses: actions/checkout@v3
- name: Select Xcode 15.0.1
run: sudo xcode-select -s /Applications/Xcode_15.0.1.app
- name: Prepare Examples Project
run: cp Examples/Examples/_Secrets.swift Examples/Examples/Secrets.swift
- name: Build examples
run: make build-examples

2 changes: 1 addition & 1 deletion Examples/Examples/_Secrets.swift
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import Foundation

enum Secrets {
static let supabaseURL = URL(string: "SUPABASE_URL")!
static let supabaseURL = URL(string: "http://localhost:54321")!
static let supabaseAnonKey = "SUPABASE_ANON_KEY"
}

0 comments on commit b8611cf

Please sign in to comment.