Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: reorder automated archival steps #2223

Merged
merged 3 commits into from
Jun 13, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions hacks/isolateVersion/allSteps.sh
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,11 @@ script_index=$1
script_directory=$(cd "$(dirname "$0")" && pwd)

if [[ "$script_index" == 1 || -z "$script_index" ]]; then
source $script_directory/1-reduceVersionManifest.sh
source $script_directory/1-deleteOtherVersions.sh
fi

if [[ "$script_index" == 2 || -z "$script_index" ]]; then
source $script_directory/2-deleteOtherVersions.sh
source $script_directory/2-reduceVersionManifest.sh
fi

if [[ "$script_index" == 3 || -z "$script_index" ]]; then
Expand All @@ -50,7 +50,7 @@ if [[ "$script_index" == 5 || -z "$script_index" ]]; then
source $script_directory/5-updateThemeComponents.sh
fi

notify "Automated steps are complete!"
notify "Automated steps are complete! For ease of review, consider PR'ing the deletion commits separate from the rest of the changes."
notify "Manual steps that remain:
5. Update the docusaurus.config.js
6. Update CI workflows
Expand Down