Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
C
code-server
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Аркадий Рудюк
code-server
Commits
a5e8337c
Unverified
Commit
a5e8337c
authored
4 years ago
by
Akash Satheesan
Browse files
Options
Downloads
Patches
Plain Diff
chore(ci): fix release scripts
parent
d17c97c9
Branches
Branches containing commit
Tags
v3.10.0
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
ci/build/release-github-assets.sh
+1
-3
1 addition, 3 deletions
ci/build/release-github-assets.sh
ci/lib.sh
+1
-1
1 addition, 1 deletion
ci/lib.sh
with
2 additions
and
4 deletions
ci/build/release-github-assets.sh
+
1
−
3
View file @
a5e8337c
...
...
@@ -12,9 +12,7 @@ main() {
download_artifact release-packages ./release-packages
local
assets
=(
./release-packages/code-server
*
"
$VERSION
"
*
{
.tar.gz,.deb,.rpm
})
for
i
in
"
${
!assets[@]
}
"
;
do
assets[
$i
]=
"--attach=
${
assets
[
$i
]
}
"
done
EDITOR
=
true
gh release upload
"v
$VERSION
"
"
${
assets
[@]
}
"
}
...
...
This diff is collapsed.
Click to expand it.
ci/lib.sh
+
1
−
1
View file @
a5e8337c
...
...
@@ -54,7 +54,7 @@ arch() {
# https://developer.github.com/v3/actions/workflow-runs/#list-workflow-runs
get_artifacts_url
()
{
local
artifacts_url
local
workflow_runs_url
=
"repos/:owner/:repo/actions/workflows/ci.yaml/runs?
status=success&
event=pull_request"
local
workflow_runs_url
=
"repos/:owner/:repo/actions/workflows/ci.yaml/runs?event=pull_request"
# For releases, we look for run based on the branch name v$code_server_version
# example: v3.10.0
local
version_branch
=
"v
$VERSION
"
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
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