Skip to content

Commit 133b1f8

Browse files
committed
Renamed project to gitlab-local-pipeline, because that is actually what it is.
1 parent 0e00667 commit 133b1f8

File tree

3 files changed

+12
-12
lines changed

3 files changed

+12
-12
lines changed

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -25,35 +25,35 @@ Then this is the tool for you.
2525
* [Features](#features)
2626
* [Unsupported tags, will be implemented in order](#unsupported-tags-will-be-implemented-in-order)
2727
* [Docker specfic tags. (Only shell working now)](#docker-specfic-tags-only-shell-working-now)
28-
* [Gitlab CI only, will not be used by gitlab-runner-local](#gitlab-ci-only-will-not-be-used-by-gitlab-runner-local)
28+
* [Gitlab CI only, will not be used by gitlab-local-pipeline](#gitlab-ci-only-will-not-be-used-by-gitlab-local-pipeline)
2929
* [Undecided](#undecided)
3030

3131
# Installation
3232
## Linux
3333
Download and put binary in `/usr/bin`
3434

3535
$ sudo su `must be installed as root, if placed in /usr/bin/`
36-
$ curl -L https://github.com/firecow/gitlab-runner-local/releases/latest/download/linux.gz | gunzip -c > /usr/bin/gitlab-runner-local
37-
$ chmod +x /usr/bin/gitlab-runner-local
36+
$ curl -L https://github.com/firecow/gitlab-local-pipeline/releases/latest/download/linux.gz | gunzip -c > /usr/bin/gitlab-local-pipeline
37+
$ chmod +x /usr/bin/gitlab-local-pipeline
3838

3939
## Windows (Git bash)
4040
Install [gitbash](https://git-scm.com/downloads)
4141

4242
Download and put binary in `C:\Program Files\Git\mingw64\bin`
4343

44-
$ curl -L https://github.com/firecow/gitlab-runner-local/releases/latest/download/win.gz | gunzip -c > /c/Program\ Files/Git/mingw64/bin/gitlab-runner-local.exe
44+
$ curl -L https://github.com/firecow/gitlab-local-pipeline/releases/latest/download/win.gz | gunzip -c > /c/Program\ Files/Git/mingw64/bin/gitlab-local-pipeline.exe
4545

4646
## Macos
4747
TODO: Fill this
4848

4949
# Usage
5050
## Example
5151
$ cd /home/user/workspace/myproject
52-
$ gitlab-runner-local
52+
$ gitlab-local-pipeline
5353

5454
## Convinience
5555
### Bash alias
56-
$ echo "alias grl='gitlab-runner-local'" >> ~/.bashrc
56+
$ echo "alias glp='gitlab-local-pipeline'" >> ~/.bashrc
5757
### Bash completion
5858
TODO: Fill this
5959

@@ -100,7 +100,7 @@ Artifacts works right now, as along as you don't overwirte git tracked files and
100100
- services
101101
- image
102102

103-
## Gitlab CI only, will not be used by gitlab-runner-local
103+
## Gitlab CI only, will not be used by gitlab-local-pipeline
104104
- cache
105105
- pages
106106
- resource_group

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
{
2-
"name": "gitlab-runner-local",
2+
"name": "gitlab-local-pipeline",
33
"main": "index.js",
44
"scripts": {
5-
"build-linux": "pkg dist/index.js -t node12-linux-x64 -o ./bin/linux/gitlab-runner-local && gzip -c bin/linux/gitlab-runner-local > bin/linux.gz",
6-
"build-macos": "pkg dist/index.js -t node12-macos-x64 -o ./bin/macos/gitlab-runner-local && gzip -c bin/macos/gitlab-runner-local > bin/macos.gz",
7-
"build-win": "pkg dist/index.js -t node12-win-x64 -o ./bin/win/gitlab-runner-local && gzip -c bin/win/gitlab-runner-local.exe > bin/win.gz",
5+
"build-linux": "pkg dist/index.js -t node12-linux-x64 -o ./bin/linux/gitlab-local-pipeline && gzip -c bin/linux/gitlab-local-pipeline > bin/linux.gz",
6+
"build-macos": "pkg dist/index.js -t node12-macos-x64 -o ./bin/macos/gitlab-local-pipeline && gzip -c bin/macos/gitlab-local-pipeline > bin/macos.gz",
7+
"build-win": "pkg dist/index.js -t node12-win-x64 -o ./bin/win/gitlab-local-pipeline && gzip -c bin/win/gitlab-local-pipeline.exe > bin/win.gz",
88
"build-all": "npm run build-linux && npm run build-macos && npm run build-win",
99
"build": "tsc",
1010
"lint": "tslint --project .",

0 commit comments

Comments
 (0)