https://github.com/doist/action-install-with-retry
GitHub action that retries installing dependencies for less CI flakiness
https://github.com/doist/action-install-with-retry
Last synced: 5 months ago
JSON representation
GitHub action that retries installing dependencies for less CI flakiness
- Host: GitHub
- URL: https://github.com/doist/action-install-with-retry
- Owner: Doist
- Created: 2020-10-15T07:03:16.000Z (almost 6 years ago)
- Default Branch: main
- Last Pushed: 2024-04-01T20:57:56.000Z (over 2 years ago)
- Last Synced: 2025-03-06T13:39:18.482Z (over 1 year ago)
- Size: 6.84 KB
- Stars: 0
- Watchers: 4
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# GitHub Action: install-with-retry
GitHub action that retries installing dependencies for less CI flakiness.
## Usage
```yml
steps:
- uses: Doist/action-install-with-retry@main
with:
install-cypress: 0
skip-install-husky: 1
```
> We're aware of the irony that one input is `install-cypress` while the other is `skip-install-husky`. For simplicity's sake we kept the naming the tools provide. PRs to change this are welcome.
## Publish
To publish a new version you need to create a tag and push it (or create it on GitHub):
```sh
git tag -f -a v2.2.0 -m "Version 2.2.0"
```