Skip to content

Commit

Permalink
Updated multiple series distribution as recommended by Launchpad
Browse files Browse the repository at this point in the history
  • Loading branch information
rubo committed Jul 31, 2024
1 parent 881fcc0 commit 3b980b0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/publish-packages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 <devops@nethermind.io> $(date -R)"
echo -e "$changelog" > debian/changelog
Expand Down Expand Up @@ -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" "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
Expand Down

0 comments on commit 3b980b0

Please sign in to comment.