mirror of
https://gitea.com/actions/setup-node.git
synced 2025-08-07 15:59:23 +08:00
Add support for v8-canary, nightly and rc (#655)
This commit is contained in:
12
src/distributions/rc/rc_builds.ts
Normal file
12
src/distributions/rc/rc_builds.ts
Normal file
@ -0,0 +1,12 @@
|
||||
import BaseDistribution from '../base-distribution';
|
||||
import {NodeInputs} from '../base-models';
|
||||
|
||||
export default class RcBuild extends BaseDistribution {
|
||||
constructor(nodeInfo: NodeInputs) {
|
||||
super(nodeInfo);
|
||||
}
|
||||
|
||||
getDistributionUrl(): string {
|
||||
return 'https://nodejs.org/download/rc';
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user