Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/unleash/update-version-action
Updates Unleash OSS or Enterprise version
https://github.com/unleash/update-version-action
Last synced: 7 days ago
JSON representation
Updates Unleash OSS or Enterprise version
- Host: GitHub
- URL: https://github.com/unleash/update-version-action
- Owner: Unleash
- Created: 2023-09-07T11:04:41.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2023-10-20T07:04:03.000Z (about 1 year ago)
- Last Synced: 2024-04-14T06:00:07.623Z (7 months ago)
- Language: TypeScript
- Size: 1020 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Update version action
Updates distribution versions in Bigquery.
## Inputs
### `distribution`
**Required** The distribution to set the version for.
- No Default
- Must be either 'oss' or 'enterprise'### `version`
**Required** The version to set
- No default
- Must adhere to semver format (will be parsed by action, and errored if in wrong format)## Example usage
Since we're assuming access to BigQuery, you should apply google-github-action/auth first.
Use a token with write access to metrics project - version dataset - version_metadata table```yaml
uses: Unleash/update-version-action
with:
distribution: enterprise
version: ${{ github.release.name }}
```