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

fix(ci/mass-rebuild): rename git repo #39

Merged
merged 2 commits into from
Aug 8, 2024
Merged
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
4 changes: 2 additions & 2 deletions .github/workflows/mass-rebuild.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,11 @@ jobs:
id: generate_build_matrix
# generate build matrix by checking out changes in ultramarine/
run: |
git config --global --add safe.directory /__w/ultramarine-pkgs/ultramarine-pkgs
git config --global --add safe.directory /__w/packages/packages
git config --global user.email "[email protected]"
madonuko marked this conversation as resolved.
Show resolved Hide resolved
git config --global user.name "Your Name"
init=$(git rev-list HEAD | tail -n 1)
git diff ${init}..HEAD > a.diff
git diff ${init}..HEAD --binary > a.diff
git checkout $init
git apply a.diff
git add *
Expand Down
Loading