Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
nheko
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Nheko Reborn
nheko
Commits
7a8bfe49
Verified
Commit
7a8bfe49
authored
2 years ago
by
Joe Donofry
Browse files
Options
Downloads
Patches
Plain Diff
Fix macOS artifact names and fix jq quotes issue
parent
40ab6f5c
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Pipeline
#4527
failed
2 years ago
Stage: build
Stage: sign
Stage: deploy
Changes
3
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
.ci/macos/notarize.sh
+2
-2
2 additions, 2 deletions
.ci/macos/notarize.sh
.ci/update-github-release.sh
+1
-1
1 addition, 1 deletion
.ci/update-github-release.sh
.gitlab-ci.yml
+1
-1
1 addition, 1 deletion
.gitlab-ci.yml
with
4 additions
and
4 deletions
.ci/macos/notarize.sh
+
2
−
2
View file @
7a8bfe49
...
...
@@ -97,7 +97,7 @@ done
VERSION
=
${
CI_COMMIT_SHORT_SHA
}
if
[
-n
"
$VERSION
"
]
;
then
mv
nheko.dmg
"nheko-
${
VERSION
}
_
${
PLAT
}
.dmg"
mv
nheko.dmg
"nheko-
${
VERSION
}
-
${
PLAT
}
.dmg"
mkdir
-p
artifacts
cp
"nheko-
${
VERSION
}
_
${
PLAT
}
.dmg"
artifacts/
cp
"nheko-
${
VERSION
}
-
${
PLAT
}
.dmg"
artifacts/
fi
\ No newline at end of file
This diff is collapsed.
Click to expand it.
.ci/update-github-release.sh
+
1
−
1
View file @
7a8bfe49
...
...
@@ -43,7 +43,7 @@ elif [ "$http_code" = "200" ]; then
fi
echo
"Getting upload URL..."
upload_url
=
"
$(
echo
"
$release_json
"
| jq
'."upload_url"'
)
"
upload_url
=
"
$(
echo
"
$release_json
"
| jq
-r
'."upload_url"'
)
"
# get rid of the 'hypermedia' stuff at the end and use a 'real' URL
echo
"Upload URL (hypermedia):
${
upload_url
}
"
upload_url
=
"
$(
echo
"
$upload_url
"
|
sed
's/{?name,label\}/?name/g'
)
"
...
...
This diff is collapsed.
Click to expand it.
.gitlab-ci.yml
+
1
−
1
View file @
7a8bfe49
...
...
@@ -151,7 +151,7 @@ codesign-macos:
-
export PATH=/usr/local/opt/qt@5/bin/:${PATH}
-
./.ci/macos/notarize.sh
after_script
:
-
./.ci/upload-nightly-gitlab.sh artifacts/nheko-${CI_COMMIT_SHORT_SHA}
_
${PLAT}.dmg
-
./.ci/upload-nightly-gitlab.sh artifacts/nheko-${CI_COMMIT_SHORT_SHA}
-
${PLAT}.dmg
needs
:
-
job
:
build-macos
optional
:
true
# optional since we want to be able to also trigger this job from cirrus ci for apple silicon builds.
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment