https://github.com/reubenmiller/tmp-go-c8y-cli-repo
https://github.com/reubenmiller/tmp-go-c8y-cli-repo
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/reubenmiller/tmp-go-c8y-cli-repo
- Owner: reubenmiller
- Created: 2022-11-17T21:55:44.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2022-11-17T22:09:03.000Z (over 2 years ago)
- Last Synced: 2025-03-06T03:35:10.416Z (3 months ago)
- Language: Shell
- Size: 83.8 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# About
This repository is responsible for hosting the latest [go-c8y-cli](https://goc8ycli.netlify.app/) packages as linux repository (apk/deb/rpm) via github pages.
# Build
The build script will download a release from the [go-c8y-cli repo](https://github.com/reubenmiller/go-c8y-cli) and add it to the repository so it can be installed via the supported linux package managers.
|Linux Distribution|Package Manager|File type|
|------------------|---------------|---------|
|Ubuntu/Debian|apt|.deb|
|alpine|apk|.apk|
|RHEL/CentOS/Fedora|yum/dnf|.rpm|## Publish latest version
```sh
./build.sh
```## Publish specific version
```sh
./build.sh --tag v2.4.0
```## Troubleshooting
### Error when pulling latest code into your checkout repo
If you have a merge conflict due to conflicts with untracked files in the repo, then run the following git command to remove any untracked files in your checked out folder.
```sh
git clean -f
```