Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/romnn/setup-brane-action
GitHub action to setup brane.
https://github.com/romnn/setup-brane-action
actions brane cicd github pipeline
Last synced: 16 days ago
JSON representation
GitHub action to setup brane.
- Host: GitHub
- URL: https://github.com/romnn/setup-brane-action
- Owner: romnn
- License: mit
- Created: 2021-06-03T03:09:47.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2021-06-03T15:01:20.000Z (over 3 years ago)
- Last Synced: 2024-12-30T16:03:02.892Z (about 1 month ago)
- Topics: actions, brane, cicd, github, pipeline
- Language: Makefile
- Homepage:
- Size: 11.7 KB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## setup brane action
GitHub action to setup [brane](https://github.com/onnovalkering/brane).
#### Usage
**Note**: Make sure the runner or container image you use the action with has at least `docker`, `git` and `make` installed.
```yaml
# .github/workflows/ci.yml
name: CI
on: ['push']jobs:
build:
runs-on: 'ubuntu-latest'
steps:
- uses: actions/checkout@v2- name: 'setup brane'
uses: 'romnn/setup-brane-action@master'
id: brane_setup
# optionally:
with:
start_instance: true
start_ide: true- name: 'use the brane CLI'
run: |
brane --help
# check that the brane services are running
docker ps- name: 'query the jupyterlab IDE access token'
run: |
echo "${{ steps.brane_setup.outputs.jupyterlab_token }}"
```