Skip to content

Commit a4fe603

Browse files
Merge branch 'main' into issue-navigator
2 parents bdc0dc7 + 8867f3f commit a4fe603

File tree

113 files changed

+3171
-1595
lines changed

Some content is hidden

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

113 files changed

+3171
-1595
lines changed

.all-contributorsrc

Lines changed: 55 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -785,6 +785,61 @@
785785
"contributions": [
786786
"bug"
787787
]
788+
},
789+
{
790+
"login": "pro100filipp",
791+
"name": "Filipp Kuznetsov",
792+
"avatar_url": "https://avatars.githubusercontent.com/u/12880697?v=4",
793+
"profile": "https://github.com/pro100filipp",
794+
"contributions": [
795+
"code"
796+
]
797+
},
798+
{
799+
"login": "rustemd02",
800+
"name": "rustemd02",
801+
"avatar_url": "https://avatars.githubusercontent.com/u/11714456?v=4",
802+
"profile": "https://github.com/rustemd02",
803+
"contributions": [
804+
"bug",
805+
"code"
806+
]
807+
},
808+
{
809+
"login": "SimonKudsk",
810+
"name": "Simon Kudsk",
811+
"avatar_url": "https://avatars.githubusercontent.com/u/10168417?v=4",
812+
"profile": "https://github.com/SimonKudsk",
813+
"contributions": [
814+
"code"
815+
]
816+
},
817+
{
818+
"login": "Syrux64",
819+
"name": "Surya",
820+
"avatar_url": "https://avatars.githubusercontent.com/u/118998822?v=4",
821+
"profile": "https://github.com/Syrux64",
822+
"contributions": [
823+
"code"
824+
]
825+
},
826+
{
827+
"login": "georgetchelidze",
828+
"name": "George Tchelidze",
829+
"avatar_url": "https://avatars.githubusercontent.com/u/96194129?v=4",
830+
"profile": "https://github.com/georgetchelidze",
831+
"contributions": [
832+
"code"
833+
]
834+
},
835+
{
836+
"login": "zhrispineda",
837+
"name": "Chris Pineda",
838+
"avatar_url": "https://avatars.githubusercontent.com/u/148818634?v=4",
839+
"profile": "http://zhr.is",
840+
"contributions": [
841+
"code"
842+
]
788843
}
789844
],
790845
"contributorsPerLine": 7,

.github/workflows/CI-release-notes.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
name: Deploy Website on Release Note Changes
22

33
on:
4+
workflow_dispatch:
45
release:
56
types: [created, edited, deleted]
67

.github/workflows/pre-release.yml

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
- name: Build CodeEdit
4949
env:
5050
APPLE_TEAM_ID: ${{ secrets.APPLE_TEAM_ID }}
51-
run: xcodebuild -scheme CodeEdit -configuration Pre -derivedDataPath "$RUNNER_TEMP/DerivedData" -archivePath "$RUNNER_TEMP/CodeEdit.xcarchive" -skipPackagePluginValidation DEVELOPMENT_TEAM=$APPLE_TEAM_ID archive
51+
run: xcodebuild -scheme CodeEdit -configuration Pre -derivedDataPath "$RUNNER_TEMP/DerivedData" -archivePath "$RUNNER_TEMP/CodeEdit.xcarchive" -skipPackagePluginValidation DEVELOPMENT_TEAM=$APPLE_TEAM_ID archive | xcpretty
5252

5353
############################
5454
# Sign
@@ -109,6 +109,20 @@ jobs:
109109
echo "APP_VERSION=$APP_VERSION" >> $GITHUB_ENV
110110
echo "APP_BUILD=$APP_BUILD" >> $GITHUB_ENV
111111
112+
############################
113+
# Upload dSYMs Artifact
114+
############################
115+
- name: Upload dSYMs Artifact
116+
uses: actions/upload-artifact@v4
117+
with:
118+
name: "CodeEdit-${{ env.APP_BUILD }}-dSYMs"
119+
path: "${{ RUNNER.TEMP }}/CodeEdit.xcarchive/dSYMs"
120+
if-no-files-found: error
121+
# overwrite files for the same build number
122+
overwrite: true
123+
# these can be big, use maximum compression
124+
compression-level: 9
125+
112126
############################
113127
# Sparkle Appcast
114128
############################

0 commit comments

Comments
 (0)