Skip to content

Commit b46e53f

Browse files
authored
Merge pull request #54 from macadmins/SCSwift
Support Companion 2.0
2 parents d84a35f + 5684824 commit b46e53f

File tree

304 files changed

+13560
-10252
lines changed

Some content is hidden

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

304 files changed

+13560
-10252
lines changed

.github/workflows/build_supportcompanion.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -42,13 +42,13 @@ jobs:
4242
p12-password: ${{ secrets.PKG_CERTIFICATES_P12_PASSWORD_MAOS }}
4343

4444
- name: Run build package script
45-
run: ./build.sh "$NOTARY_APP_PASSWORD"
46-
45+
run: ./build.zsh "Release" "$NOTARY_APP_PASSWORD"
46+
4747
- name: get environment variables
4848
id: get_env_var
4949
run: |
50-
echo "SC_VERSION=$(/bin/cat ./build_info.txt)" >> $GITHUB_ENV
51-
echo "SC_MAIN_VERSION=$(/bin/cat ./build_info_main.txt)" >> $GITHUB_ENV
50+
echo "SC_VERSION=$(/bin/cat ./build/build_info.txt)" >> $GITHUB_ENV
51+
echo "SC_MAIN_VERSION=$(/bin/cat ./build/build_info_main.txt)" >> $GITHUB_ENV
5252
5353
- name: Get Changelog Entry
5454
id: changelog_reader
@@ -84,10 +84,10 @@ jobs:
8484
8585
# Changes
8686
${{ steps.changelog.outputs.changelog }}
87-
files: ${{github.workspace}}/Build/build/*.pkg
87+
files: ${{github.workspace}}/release/*.pkg
8888

8989
- name: Upload packages
9090
uses: actions/upload-artifact@0b7f8abb1508181956e8e162db84b466c27e18ce # v3.1.2
9191
with:
9292
name: packages
93-
path: Build/build/
93+
path: release/

.github/workflows/build_supportcompanion_manual.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -34,13 +34,13 @@ jobs:
3434
p12-password: ${{ secrets.PKG_CERTIFICATES_P12_PASSWORD_MAOS }}
3535

3636
- name: Run build package script
37-
run: ./build.sh "$NOTARY_APP_PASSWORD"
38-
37+
run: ./build.zsh "Release" "$NOTARY_APP_PASSWORD"
38+
3939
- name: get environment variables
4040
id: get_env_var
4141
run: |
42-
echo "SC_VERSION=$(/bin/cat ./build_info.txt)" >> $GITHUB_ENV
43-
echo "SC_MAIN_VERSION=$(/bin/cat ./build_info_main.txt)" >> $GITHUB_ENV
42+
echo "SC_VERSION=$(/bin/cat ./build/build_info.txt)" >> $GITHUB_ENV
43+
echo "SC_MAIN_VERSION=$(/bin/cat ./build/build_info_main.txt)" >> $GITHUB_ENV
4444
4545
- name: Get Changelog Entry
4646
id: changelog_reader
@@ -76,10 +76,10 @@ jobs:
7676
7777
# Changes
7878
${{ steps.changelog.outputs.changelog }}
79-
files: ${{github.workspace}}/Build/build/*.pkg
79+
files: ${{github.workspace}}/release/*.pkg
8080

8181
- name: Upload packages
8282
uses: actions/upload-artifact@0b7f8abb1508181956e8e162db84b466c27e18ce # v3.1.2
8383
with:
8484
name: packages
85-
path: Build/build/
85+
path: release/

.github/workflows/build_supportcompanion_prerelease.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -34,13 +34,13 @@ jobs:
3434
p12-password: ${{ secrets.PKG_CERTIFICATES_P12_PASSWORD_MAOS }}
3535

3636
- name: Run build package script
37-
run: ./build.sh "$NOTARY_APP_PASSWORD"
37+
run: ./build.zsh "Release" "$NOTARY_APP_PASSWORD"
3838

3939
- name: get environment variables
4040
id: get_env_var
4141
run: |
42-
echo "SC_VERSION=$(/bin/cat ./build_info.txt)" >> $GITHUB_ENV
43-
echo "SC_MAIN_VERSION=$(/bin/cat ./build_info_main.txt)" >> $GITHUB_ENV
42+
echo "SC_VERSION=$(/bin/cat ./build/build_info.txt)" >> $GITHUB_ENV
43+
echo "SC_MAIN_VERSION=$(/bin/cat ./build/build_info_main.txt)" >> $GITHUB_ENV
4444
4545
- name: Get Changelog Entry
4646
id: changelog_reader
@@ -76,10 +76,10 @@ jobs:
7676
7777
# Changes
7878
${{ steps.changelog.outputs.changelog }}
79-
files: ${{github.workspace}}/Build/build/*.pkg
79+
files: ${{github.workspace}}/release/*.pkg
8080

8181
- name: Upload packages
8282
uses: actions/upload-artifact@0b7f8abb1508181956e8e162db84b466c27e18ce # v3.1.2
8383
with:
8484
name: packages
85-
path: Build/build/
85+
path: release/

.gitignore

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,11 @@
55
# ignore vscode stuff
66
.vscode
77

8+
# ignore xcode stuff
9+
**/xcuserdata/
10+
**/*.xcuserdatad/
11+
default.profraw
12+
813
# ignore build output
914
Build/build
1015
LaunchAgent/build
@@ -35,4 +40,10 @@ __pycache__/
3540
*.user
3641
*.userosscache
3742
*.sln.docstates
38-
*.sln.DotSettings.user
43+
*.sln.DotSettings.user
44+
45+
# ignore build and release files
46+
build/
47+
release/
48+
.build/
49+
buildServer.json

App.axaml

Lines changed: 0 additions & 36 deletions
This file was deleted.

App.axaml.cs

Lines changed: 0 additions & 191 deletions
This file was deleted.

AppIcon.png

455 KB
Loading

Assets/Logger.dylib

-50.1 KB
Binary file not shown.

0 commit comments

Comments
 (0)