From 69ad6615198e18f77d1f6d4d2e089b76d80525a3 Mon Sep 17 00:00:00 2001 From: Marcel Nellesen <nellesen@itc.rwth-aachen.de> Date: Mon, 7 Dec 2020 12:39:55 +0100 Subject: [PATCH] Fix: Fixed the pipelines --- LICENSE | 2 +- package-lock.json | 2 +- package.json | 4 ++-- publishDocs.ps1 | 19 ------------------- 4 files changed, 4 insertions(+), 23 deletions(-) delete mode 100644 publishDocs.ps1 diff --git a/LICENSE b/LICENSE index e0f5aa4..b8cd48a 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2019 RWTH Aachen University +Copyright (c) 2020 RWTH Aachen University Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/package-lock.json b/package-lock.json index e9b2187..f3e731b 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "@coscine/supportadmin", - "version": "1.0.0", + "version": "0.0.1", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index 7858dfe..e9a1ed9 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@coscine/supportadmin", - "version": "1.0.0", + "version": "0.0.1", "private": true, "directories": { "doc": "docs" @@ -47,7 +47,7 @@ }, "repository": { "type": "git", - "url": "https://git.rwth-aachen.de/coscine/app/quotamanagement.git" + "url": "https://git.rwth-aachen.de/coscine/app/supportadmin.git" }, "license": "MIT" } diff --git a/publishDocs.ps1 b/publishDocs.ps1 deleted file mode 100644 index f49b3b9..0000000 --- a/publishDocs.ps1 +++ /dev/null @@ -1,19 +0,0 @@ -param( - $token -) - -$remoteUrl = git config --get remote.origin.url -$remoteUrl = $remoteUrl.replace("git@", "") -$remoteUrl = $remoteUrl -replace "https(.*?)@","" -$remoteUrl = $remoteUrl.replace(":", "/") -$remoteUrl = $remoteUrl.replace(".git", ".wiki.git") - -$temporaryFolderName = "publishDocsTempFolder" - -git clone "https://gitlab-ci-token:$($token)@$($remoteUrl)" $temporaryFolderName -cd $temporaryFolderName -Remove-Item * -cp -r ../docs/* ./ -git add . -git commit -m "Docs: Documentation Update" -git push \ No newline at end of file -- GitLab