Remove neofetch

This commit is contained in:
Igor Pecovnik
2024-08-20 10:19:23 +02:00
parent 406e52a262
commit 8a63645936

View File

@@ -38,14 +38,14 @@ runs:
run: |
ssh -o StrictHostKeyChecking=no ${{ inputs.DUT_USER }}@${{ inputs.DUT_IP }} "sed -i 's|http:\/\/[^ ]*|http:\/\/${{ inputs.REPOSITORY }}|' /etc/apt/sources.list.d/armbian.list" || true
ssh -o StrictHostKeyChecking=no ${{ inputs.DUT_USER }}@${{ inputs.DUT_IP }} "apt update; dpkg --configure -a; apt-get -o Dpkg::Options::='--force-confold' --force-yes -fuy dist-upgrade; apt-get -y install binutils iperf3 neofetch datamash p7zip-full; apt clean" || true
ssh -o StrictHostKeyChecking=no ${{ inputs.DUT_USER }}@${{ inputs.DUT_IP }} "apt update; dpkg --configure -a; apt-get -o Dpkg::Options::='--force-confold' --force-yes -fuy dist-upgrade; apt-get -y install binutils iperf3 datamash p7zip-full; apt clean" || true
if [ "${{ inputs.REPOSITORY }}" == "beta.armbian.com" ]; then
if [ "${{ inputs.REPOSITORY }}" == "beta.armbian.com" ]; then
echo "REPOSITORY=beta" >> $GITHUB_ENV
else
echo "REPOSITORY=stable" >> $GITHUB_ENV
fi
- name: "Handling exceptions"
if: ${{ inputs.STATUS == '' }}
shell: bash