-
Notifications
You must be signed in to change notification settings - Fork 72
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ba5c461
commit c22efd4
Showing
2 changed files
with
52 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
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 | ||
- uses: ./.github/actions/setup_node | ||
- uses: ./.github/actions/restore_install_cache | ||
- name: Restore release versions | ||
run: npx tsx scripts/restore_release.ts |