https://github.com/yourbase/install-yb-action
A GitHub Action that installs yb: the YourBase build tool
https://github.com/yourbase/install-yb-action
github-actions yb yourbase
Last synced: 3 months ago
JSON representation
A GitHub Action that installs yb: the YourBase build tool
- Host: GitHub
- URL: https://github.com/yourbase/install-yb-action
- Owner: yourbase
- License: apache-2.0
- Created: 2021-02-25T23:48:02.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2023-03-03T23:57:41.000Z (over 3 years ago)
- Last Synced: 2025-10-22T17:54:31.282Z (8 months ago)
- Topics: github-actions, yb, yourbase
- Language: TypeScript
- Homepage:
- Size: 198 KB
- Stars: 2
- Watchers: 3
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
# Install yb GitHub Action
This GitHub Action installs [yb][], the [YourBase][] build tool, into your
GitHub Action runner.
[yb]: https://github.com/yourbase/yb
[YourBase]: https://yourbase.io/
## Usage
```yaml
name: Build
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v2
- name: Install yb
uses: yourbase/install-yb-action@v1
with:
# Pin to a specific version of yb. If omitted, defaults to the latest release.
version: v0.6.3
- name: Build
run: yb build
```
## Inputs
### `version`
Version tag of yb to install (like v0.6.1)
### `token`
GitHub access token to use inside the [yb][] build environment. Defaults to
`${{ github.token }}`.
## Contributing
We welcome contributions to this project! Please see the [contributor's guide][]
for more information.
[contributor's guide]: CONTRIBUTING.md
## License
This project is licensed under an [Apache 2.0 license](LICENSE).