Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
lib4neuro
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Container Registry
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
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
MolDyn
lib4neuro
Commits
b4dbab0b
Commit
b4dbab0b
authored
6 years ago
by
Martin Beseda
Browse files
Options
Downloads
Patches
Plain Diff
[NEW] Added Bash scripts providing easy-to-use interface to add and delete releases.
parent
8cbb6fe8
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
release-api/delete_release.sh
+15
-0
15 additions, 0 deletions
release-api/delete_release.sh
release-api/upload_release.sh
+31
-0
31 additions, 0 deletions
release-api/upload_release.sh
with
46 additions
and
0 deletions
release-api/delete_release.sh
0 → 100755
+
15
−
0
View file @
b4dbab0b
#!/bin/bash
PROJECT_ID
=
$1
TAG_NAME
=
$2
PRIVATE_TOKEN
=
$3
if
[
"
$3
"
==
""
]
;
then
echo
"Missing parameter! Parameters are PROJECT_ID, TAG_NAME and PRIVATE_TOKEN."
;
exit
1
;
fi
curl
--request
DELETE
--header
"Private-Token:
${
PRIVATE_TOKEN
}
"
"https://code.it4i.cz/api/v4/projects/
${
PROJECT_ID
}
/releases/
${
TAG_NAME
}
"
echo
This diff is collapsed.
Click to expand it.
release-api/upload_release.sh
0 → 100755
+
31
−
0
View file @
b4dbab0b
#!/bin/bash
RELEASE_NAME
=
"
$1
"
TAG_NAME
=
"
$2
"
PROJECT_ID
=
"
$3
"
DESCRIPTION_FILE_PATH
=
"
$4
"
PRIVATE_TOKEN
=
"
$5
"
if
[
"
$5
"
==
""
]
;
then
echo
"Missing parameter! Parameters are RELEASE_NAME, TAG_NAME, PROJECT_ID, DESCRIPTION_FILE_PATH and PRIVATE_TOKEN."
;
exit
1
;
fi
DESCRIPTION
=
''
# Load data from file
while
read
-r
line
;
do
DESCRIPTION
=
"
${
DESCRIPTION
}${
line
}
\n
"
;
done
<
"
${
DESCRIPTION_FILE_PATH
}
"
echo
$DESCRIPTION
curl
--request
POST
\
--header
'Content-Type: application/json'
\
--header
"Private-Token:
${
PRIVATE_TOKEN
}
"
\
--data-binary
"{
\"
name
\"
:
\"
${
RELEASE_NAME
}
\"
,
\"
tag_name
\"
:
\"
${
TAG_NAME
}
\"
,
\"
description
\"
:
\"
${
DESCRIPTION
}
\"
}"
\
"https://code.it4i.cz/api/v4/projects/
${
PROJECT_ID
}
/releases"
echo
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