get


Logs | Files | README | README | LICENSE | LICENSE | GitLab


1
commit 9edfaa804a9705586f60ef5504402162a2c9dad8
2
Author: Connor Etherington <[email protected]>
3
Date:   Fri Sep 13 23:28:18 2024 +0200
4
5
    Auto-Commit Update - 20240913
6
---
7
 .gitlab-ci.yml | 17 -----------------
8
 1 file changed, 17 deletions(-)
9
10
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
11
deleted file mode 100644
12
index 90136d1..0000000
13
--- a/.gitlab-ci.yml
14
+++ /dev/null
15
@@ -1,17 +0,0 @@
16
-image: alpine:latest
17
-
18
-stages:
19
-  - release
20
-
21
-release_job:
22
-  stage: release
23
-  before_script:
24
-    - apt-get update -y
25
-    - apt-get install -y curl
26
-    - curl -o /usr/local/bin/release-cli -L --fail https://gitlab.com/gitlab-org/release-cli/-/releases/v0.12.0/downloads/release-cli-linux-amd64
27
-    - chmod +x /usr/local/bin/release-cli
28
-  script:
29
-    - echo "Creating release for tag $CI_COMMIT_TAG"
30
-    - release-cli create --name "Release $CI_COMMIT_TAG" --description "Release $CI_COMMIT_TAG" --tag-name "$CI_COMMIT_TAG" --ref "$CI_COMMIT_TAG"
31
-  only:
32
-    - tags