Update README.md

This commit is contained in:
ZHoob2004 2021-11-17 12:38:17 -07:00 committed by GitHub
parent 2df8e87187
commit 5abcf1cbd2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 16 additions and 0 deletions

View File

@ -1 +1,17 @@
# rusefi-ci # rusefi-ci
This script will automatically download and configure the github actions self-hosted runner and dynamically register it to the repo given in $OWNER/$REPO
To run, first build the image with:
`docker build -t rusefi-ci .`
Then run the newly built image passing `OWNER`, `REPO`, and `ACCESS_TOKEN` (your personal github access token, keep this safe!)
```bash
docker run --detach \
--ENV OWNER=ZHoob2004 \
--ENV REPO=rusefi \
--ENV ACCESS_TOKEN=<PUT YO TOKEN HERE AND KEEP IT SECRET> \
rusefi-ci
```