mirror of
https://github.com/actions/setup-java.git
synced 2025-05-18 15:56:32 +00:00
* Add Support for JetBrains Runtime - Add Installer, Models - Includes Tests & Test Manifest Data - Add to `e2e-versions.yml` - Run `npm run build` - Update README.md * Add Docs + Distro Factory * Fix Runtime Unrecognizable * `npm run build` (JBR) * Fix Incorrect JBR Distribution * Switch to `jbrsdk_jcef` * Fix Incorrect File Extension * `npm run build` (JBR) * Fix Windows Support * Add `GITHUB_TOKEN` Authentication * Update Authorization, Add Documentation * Fix PR Issues - Fix JDK 11 URL Bug - Add JDK URL Testing to ensure versions can be downloaded - Run Prettier * Change Distribution to \`jbrsdk\` * Don't Replace Underscores * Fix `semver` not resolving correctly * Update e2e-versions.yml - Add `GITHUB_TOKEN` environment variable for JetBrains requests - Add `jetbrains` to other E2E tests * `npm run format` * Fix Format, Inaccessible URLs * Update Tests * Fix Broken URLs, Add Additional Package Types * `npm run build` * Fix JetBrains Tests, Issues in `e2e-versions.yml` * Add Hidden JDK 11 Versions * Update `jetbrains-installer` Tests * Add Notices in Documentation * Fix Documentation * Run `npm audit fix` * Fix Tests on Windows
14 lines
272 B
TypeScript
14 lines
272 B
TypeScript
// Raw Model from https://api.github.com/repos/JetBrains/JetBrainsRuntime/releases
|
|
|
|
export interface IJetBrainsRawVersion {
|
|
tag_name: string;
|
|
name: string;
|
|
}
|
|
|
|
export interface IJetBrainsVersion {
|
|
tag_name: string;
|
|
semver: string;
|
|
build: number;
|
|
url: string;
|
|
}
|