Udpate scritp to download release
This commit is contained in:
parent
5cf2ac0217
commit
813dfc3d47
2 changed files with 6 additions and 13 deletions
|
@ -14,20 +14,13 @@
|
||||||
set -o errexit -o nounset -o pipefail
|
set -o errexit -o nounset -o pipefail
|
||||||
|
|
||||||
# Set Starterkit version
|
# Set Starterkit version
|
||||||
STARTER_KIT_VERSION="v0.0.8"
|
STARTER_KIT_VERSION="v0.0.1"
|
||||||
|
|
||||||
# Set GitLab URL and GitLab project ID (AWS Terraform StarterKit porject ID)
|
curl -L\
|
||||||
GITLAB_URL="git.mydomain.com"
|
"https://github.com/Orange-OpenSource/AWSTerraformStarterKit/archive/refs/tags/${STARTER_KIT_VERSION}.zip" \
|
||||||
GITLAB_PROJECT_ID="27"
|
|
||||||
|
|
||||||
# Set GitLab HTTP token
|
|
||||||
GITLAB_TOKEN="YOUR_GITLAB_HTTP_TOKEN"
|
|
||||||
|
|
||||||
curl --header "PRIVATE-TOKEN: ${GITLAB_TOKEN}" \
|
|
||||||
"https://${GITLAB_URL}/api/v4/projects/${GITLAB_PROJECT_ID}/repository/archive.zip?sha=${STARTER_KIT_VERSION}" \
|
|
||||||
-o /tmp/archive.zip
|
-o /tmp/archive.zip
|
||||||
|
|
||||||
unzip /tmp/archive.zip -d .
|
unzip /tmp/archive.zip -d .
|
||||||
cp -r awsterraformstarterkit-*/. .
|
cp -r AWSTerraformStarterKit-*/. .
|
||||||
rm -rf awsterraformstarterkit-*
|
rm -rf AWSTerraformStarterKit-*
|
||||||
rm /tmp/archive.zip
|
rm /tmp/archive.zip
|
||||||
|
|
|
@ -13,4 +13,4 @@
|
||||||
|
|
||||||
set -o errexit -o nounset -o pipefail
|
set -o errexit -o nounset -o pipefail
|
||||||
|
|
||||||
ls -a | grep -xvi ".gitignore\|.git\|.idea\|terraform\|README.md\|configure.yaml\|configure.yaml.dist" | xargs rm -rfv
|
ls -a | grep -xvi ".gitignore\|.git\|.idea\|terraform\|README.md\|configure.yaml\|configure.yaml.dist\|get-starter-kit.sh\|remove-starter-kit.sh" | xargs rm -rfv
|
||||||
|
|
Loading…
Reference in a new issue