Skip to content

Commit 3191a7f

Browse files
committed
Update logo, icon and build scripts
1 parent d390d66 commit 3191a7f

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

44 files changed

+323
-98
lines changed

.github/workflows/docc.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ name: DocC Runner
66

77
on:
88
push:
9-
branches: ["master"]
9+
branches: ["main"]
1010

1111
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
1212
permissions:
@@ -34,13 +34,13 @@ jobs:
3434
- name: Select Xcode version
3535
uses: maxim-lobanov/setup-xcode@v1
3636
with:
37-
xcode-version: '16.0'
37+
xcode-version: latest-stable
3838
- name: Build DocC
3939
run: bash scripts/docc.sh ${{ github.event.repository.name }}
4040
- name: Upload artifact
4141
uses: actions/upload-pages-artifact@v3
4242
with:
43-
path: '.build/docs'
43+
path: '.build/docs-iOS'
4444
- id: deployment
4545
name: Deploy to GitHub Pages
4646
uses: actions/deploy-pages@v4
Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
# This workflow builds and tests the project.
22
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-swift
33

4-
name: Build Runner
4+
name: Unit Test Runner
55

66
on:
77
push:
8-
branches: ["master"]
8+
branches: ["main"]
99
pull_request:
10-
branches: ["master"]
10+
branches: ["main"]
1111

1212
jobs:
1313
build:
@@ -16,8 +16,6 @@ jobs:
1616
- uses: actions/checkout@v3
1717
- uses: maxim-lobanov/setup-xcode@v1
1818
with:
19-
xcode-version: '16.0'
20-
- name: Build all platforms
21-
run: bash scripts/build.sh ${{ github.event.repository.name }}
22-
- name: Test iOS
23-
run: bash scripts/test.sh ${{ github.event.repository.name }}
19+
xcode-version: latest-stable
20+
- name: Run unit tests for all platforms
21+
run: bash scripts/test.sh ${{ github.event.repository.name }}
37.5 KB
Loading
-97.5 KB
Loading
-3.36 KB
Loading
-189 Bytes
Loading
-10.6 KB
Loading
-468 Bytes
Loading
-32.7 KB
Loading
-933 Bytes
Loading

0 commit comments

Comments
 (0)