Skip to content
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
5 changes: 4 additions & 1 deletion .github/workflows/cut_release_branch.yml
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,10 @@ jobs:
git config user.name $GITHUB_ACTOR
git config user.email actions@"$RUNNER_NAME".local
- name: Install xmllint
run: sudo apt-get install -y libxml2-utils
run: |
sudo apt-get clean
sudo apt-get update
sudo apt-get install -y --no-install-recommends libxml2-utils
- name: Update .asf.yaml to protect new release branch from force push
run: |
sed -i -e "s/master: {}/master: {}\n release-${RELEASE}: {}/g" .asf.yaml
Expand Down
Loading