mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
This commit fixes that the angular.dev deployment is subject to GitHub API rate limiting due to lack of an access token. This commit fixes this, similar to how we fixed it in `angular/components`. The token is pure read-only. PR Close #56929
19 lines
589 B
YAML
19 lines
589 B
YAML
name: 'Deploy angular.dev site'
|
|
description: 'Automatically deploy and set up redirects for angular.dev'
|
|
author: 'Angular'
|
|
inputs:
|
|
serviceKey:
|
|
description: 'The service key used for firebase deployments.'
|
|
required: true
|
|
githubReleaseTrainReadToken:
|
|
description: 'GitHub access token for reading release trains without rate limits.'
|
|
required: true
|
|
configPath:
|
|
description: 'The path to the firebase config file.'
|
|
required: true
|
|
distDir:
|
|
description: 'The path to the firebase dist directory.'
|
|
required: true
|
|
runs:
|
|
using: 'node20'
|
|
main: 'main.js'
|