From f95fe4f11bfe26fcdef68f4ff91f84fdfbb32c15 Mon Sep 17 00:00:00 2001 From: Ruben Buniatyan Date: Fri, 2 Aug 2024 18:25:29 +0200 Subject: [PATCH] Remove Mantic from PPA (#7296) --- .github/workflows/publish-packages.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/publish-packages.yml b/.github/workflows/publish-packages.yml index 0d6690d77ab..210889592d7 100644 --- a/.github/workflows/publish-packages.yml +++ b/.github/workflows/publish-packages.yml @@ -43,7 +43,7 @@ jobs: awk -i inplace -v n=1 '/hash/ { if (++count == n) sub(/hash.*/, "hash='$arm64_hash'"); } 1' debian/postinst awk -i inplace -v n=2 '/hash/ { if (++count == n) sub(/hash.*/, "hash='$x64_hash'"); } 1' debian/postinst - changelog="nethermind ($version) noble; urgency=high\n" + changelog="nethermind ($version) focal; urgency=high\n" changelog+=" * Nethermind v$version\n" changelog+=" -- Nethermind $(date -R)" echo -e "$changelog" > debian/changelog @@ -74,8 +74,8 @@ jobs: echo ${{ secrets.PPA_COPY_TOKEN }} | base64 --decode > /tmp/lp_credentials git clone https://git.launchpad.net/ubuntu-archive-tools cd ubuntu-archive-tools - for release in "focal" "mantic" "jammy"; do - python3 copy-package -y -b -p nethermindeth --ppa-name=nethermind -s noble --to-suite=$release nethermind + for release in "jammy" "noble"; do + python3 copy-package -y -b -p nethermindeth --ppa-name=nethermind -s focal --to-suite=$release nethermind done rm -f /tmp/lp_credentials