You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: README.md
+70-1
Original file line number
Diff line number
Diff line change
@@ -8,6 +8,17 @@
8
8
> SCM engine can be run either as a regular CI job in your pipeline, or be triggered through the Webhook system, allowing for versatile and flexible deployments.
9
9
10
10
-[Installation](#installation)
11
+
-[Docker](#docker)
12
+
-[homebrew tap](#homebrew-tap)
13
+
-[apt](#apt)
14
+
-[yum](#yum)
15
+
-[snapcraft](#snapcraft)
16
+
-[scoop](#scoop)
17
+
-[aur](#aur)
18
+
-[deb, rpm and apk packages](#deb-rpm-and-apk-packages)
19
+
-[go install](#go-install)
20
+
-[Usage](#usage)
21
+
-[GitLab-CI pipeline](#gitlab-ci-pipeline)
11
22
-[Commands](#commands)
12
23
-[`evaluate`](#evaluate)
13
24
-[Configuration file](#configuration-file)
@@ -42,7 +53,65 @@
42
53
43
54
## Installation
44
55
45
-
TODO
56
+
### Docker
57
+
58
+
```shell
59
+
docker run --rm ghcr.io/jippi/scm-engine
60
+
```
61
+
62
+
### homebrew tap
63
+
64
+
```shell
65
+
brew install jippi/tap/scm-engine
66
+
```
67
+
68
+
### apt
69
+
70
+
```shell
71
+
echo'deb [trusted=yes] https://pkg.jippi.dev/apt/ * *'| sudo tee /etc/apt/sources.list.d/scm-engine.list
72
+
sudo apt update
73
+
sudo apt install scm-engine
74
+
```
75
+
76
+
### yum
77
+
78
+
```shell
79
+
echo'[scm-engine]
80
+
name=scm-engine
81
+
baseurl=https://pkg.jippi.dev/yum/
82
+
enabled=1
83
+
gpgcheck=0'| sudo tee /etc/yum.repos.d/scm-engine.repo
Download the `.deb`, `.rpm` or `.apk` packages from the [releases page](https://github.com/jippi/scm-engine/releases) and install them with the appropriate tools.
0 commit comments