Skip to content
This repository has been archived by the owner on Jul 7, 2024. It is now read-only.
/ Orion Public archive

Commit

Permalink
Merge pull request #166 from Siderus/feature/adds-debian-repo-and-tri…
Browse files Browse the repository at this point in the history
…ggers

Adds debian repo and triggers
  • Loading branch information
koalalorenzo authored Aug 5, 2018
2 parents 7fddcc4 + 8898504 commit 3671757
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 7 deletions.
14 changes: 9 additions & 5 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ services:
stages:
- test
- release
- postrelease

before_script:
- mv package.json package.json.old
Expand All @@ -17,19 +18,22 @@ before_script:

yarn-test:
stage: test
tags:
- docker
script:
- docker run --rm -v ${PWD}:/project electronuserland/builder:wine /bin/bash -c "make lint test"
only:
- master

yarn-release:
stage: release
when: manual
tags:
- docker
retry: 2
script:
- docker run --rm -e GH_TOKEN="${GH_TOKEN}" -v ${PWD}:/project electronuserland/builder:wine /bin/bash -c "make release_all"
only:
- master

trigger-repository:
stage: postrelease
script:
- curl -X POST -F token=${TRIGGER_REPO_TOKEN} -F ref=master https://gitlab.com/api/v4/projects/7744513/trigger/pipeline
only:
- master
26 changes: 24 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,32 @@ repository from an UI. It includes all the dependencies needed, and works on
every major operative system.
It is developed and maintained by [Siderus](https://siderus.io).

To download the latest version for Windows, GNU/Linux and macOS [check the latest release](https://github.com/Siderus/Orion/releases/latest)!

![Screenshots](docs/main.png)

## Download
To download the latest version, you can [check the latest release page](https://github.com/Siderus/Orion/releases/latest)

We support the following operative systems, but feel free to try it on different ones:

* macOS (latest)
* Windows 10
* GNU/Linux

### Ubuntu / Debian Repository
To download Siderus Orion for Ubuntu, you can add Siderus debian reposiotry:

```
wget -qO - https://get.siderus.io/key.public.asc | sudo apt-key add -
echo "deb https://get.siderus.io/ apt/" | sudo tee -a /etc/apt/sources.list.d/siderus.list
sudo apt update
```

And then you can install the `orion` package by running:

```
sudo apt install orion
```

## About the project
The user should be able to manage the repository by adding, downloading and
removing files from the node using an GUI instead of CLI or web interface.
Expand Down

0 comments on commit 3671757

Please sign in to comment.