https://github.com/suyash/actions-bazelisk
add bazel in the build
https://github.com/suyash/actions-bazelisk
Last synced: 3 months ago
JSON representation
add bazel in the build
- Host: GitHub
- URL: https://github.com/suyash/actions-bazelisk
- Owner: suyash
- License: mit
- Created: 2020-12-13T11:38:35.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2023-03-07T11:59:52.000Z (about 2 years ago)
- Last Synced: 2025-01-22T22:45:26.395Z (4 months ago)
- Language: TypeScript
- Size: 90.8 KB
- Stars: 2
- Watchers: 3
- Forks: 1
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# actions-bazelisk

- Download latest bazelisk depending on platform
- Add it to tools cache
- Add it to PATH## Hacking
Build the typescript and package it for distribution and run tests
```bash
$ npm run all
```### Publish to a distribution branch
Actions are run from GitHub repos so we will checkin the packed dist folder.
```bash
$ npm run package
$ git add dist
$ git commit -a -m "prod dependencies"
$ git push origin releases/v1
```Your action is now published! :rocket:
See the [versioning documentation](https://github.com/actions/toolkit/blob/master/docs/action-versioning.md)