Remove debug step from workflow

This commit is contained in:
Julian Groß 2022-12-07 08:50:46 +01:00
parent 1ca69fde93
commit 5af7df7153

View file

@ -254,23 +254,6 @@ jobs:
echo "Disk usage:"
df -h
- name: tree
if: always()
shell: bash
run: |
if [[ "${{ matrix.os }}" =~ "ubuntu" || "${{ matrix.os }}" =~ "debian" ]]; then
echo "Updating apt repository index"
sudo apt update || exit 1
echo "Installing apt packages"
sudo apt -y install tree || exit 1
else # RPM
dnf -y install tree || exit 1
fi
tree -f /
- name: Upload artifact to GitHub
if: github.event_name == 'pull_request'
# upload-artifact v2 and v3 are currently broken on our Docker configuration