-
Notifications
You must be signed in to change notification settings - Fork 66
53 lines (51 loc) · 1.76 KB
/
restore_release.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
name: restore_release
on:
# TODO remove push trigger before merging
push:
branches:
- rollback
workflow_dispatch:
inputs:
useNpmRegistry:
required: false
type: boolean
default: false
description: |
Whether to run the workflow against the live npm registry or not.
Defaults to false. Must be explicitly set to true to run against the npm registry.
searchForReleaseStartingFrom:
required: false
type: string
default: HEAD
description: |
By default, the most recent release from HEAD (inclusive) of the target branch will be deprecated.
To deprecate a different release, specify the release commit to deprecate here.
jobs:
install:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # version 3.6.0
- uses: ./.github/actions/setup_node
- uses: ./.github/actions/install_with_cache
restore_release:
needs:
- install
runs-on: ubuntu-latest
env:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# TODO remove test inputs before merging
INPUT_USENPMREGISTRY: false
INPUT_SEARCHFORRELEASESTARTINGFROM: HEAD
steps:
- uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # version 3.6.0
with:
# fetch full history so that we can properly lookup past releases
fetch-depth: 0
- uses: ./.github/actions/setup_node
- uses: ./.github/actions/restore_install_cache
- name: Start local proxy
if: ${{ !inputs.useNpmRegistry }}
run: npm run start:npm-proxy
- name: Restore release versions
run: npx tsx scripts/restore_release.ts