Skip to content

Commit

Permalink
exclude revision for initial release
Browse files Browse the repository at this point in the history
  • Loading branch information
neodix42 committed Jan 30, 2024
1 parent 8aab906 commit db96b60
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/create-deb-ppa-packages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,8 +64,14 @@ jobs:
mkdir -p both/{amd64,arm64}
cp -R ton-linux-deb-amd64/* both/amd64/
cp -R ton-linux-deb-arm64/* both/arm64/
tar -czvf ton-${VERSION}-${REVISION}.tar.gz -C both .
ln -s ton-${VERSION}-${REVISION}.tar.gz ton_${VERSION}-${REVISION}.orig.tar.gz
if [[ $REVISION -eq 1 ]]; then
tar -czvf ton-${VERSION}.tar.gz -C both .
ln -s ton-${VERSION}.tar.gz ton_${VERSION}.orig.tar.gz
else
tar -czvf ton-${VERSION}-${REVISION}.tar.gz -C both .
ln -s ton-${VERSION}-${REVISION}.tar.gz ton_${VERSION}.orig.tar.gz
fi
mkdir ton-$VERSION
Expand Down

0 comments on commit db96b60

Please sign in to comment.