remove legacy build

Signed-off-by: Ronni Skansing <rskansing@gmail.com>
This commit is contained in:
Ronni Skansing
2026-01-27 19:12:07 +01:00
parent 76a49ddc6c
commit d23bc4fbfa
2 changed files with 0 additions and 22 deletions

View File

@@ -128,12 +128,6 @@ jobs:
phishingclub \
phishingclub.sig
# create legacy-named package (amd64) for backward compatibility with pre-arm versions
tar -czf packages/phishingclub_${{ steps.get_version.outputs.VERSION }}.tar.gz \
-C build/amd64 \
phishingclub \
phishingclub.sig
- name: Build and push multi-arch Docker image
uses: docker/build-push-action@v5
with:
@@ -192,7 +186,6 @@ jobs:
gh release create ${{ steps.get_version.outputs.TAG }} \
./packages/phishingclub_${{ steps.get_version.outputs.VERSION }}_linux_amd64.tar.gz \
./packages/phishingclub_${{ steps.get_version.outputs.VERSION }}_linux_arm64.tar.gz \
./packages/phishingclub_${{ steps.get_version.outputs.VERSION }}.tar.gz \
--title "PhishingClub ${{ steps.get_version.outputs.TAG }}" \
--notes "${{ steps.get_release_notes.outputs.NOTES }}"

View File

@@ -150,20 +150,6 @@ jobs:
echo "✅ ARM64 package created without signature"
fi
# create legacy-named package (amd64) for backward compatibility with pre-arm versions
if [ -f build/amd64/phishingclub.sig ]; then
tar -czf packages/phishingclub_${{ steps.get_version.outputs.VERSION }}.tar.gz \
-C build/amd64 \
phishingclub \
phishingclub.sig
echo "✅ Legacy package created with signature"
else
tar -czf packages/phishingclub_${{ steps.get_version.outputs.VERSION }}.tar.gz \
-C build/amd64 \
phishingclub
echo "✅ Legacy package created without signature"
fi
- name: Build and push test multi-arch Docker image
uses: docker/build-push-action@v5
with:
@@ -224,5 +210,4 @@ jobs:
build/arm64/phishingclub.sig
packages/phishingclub_${{ steps.get_version.outputs.VERSION }}_linux_amd64.tar.gz
packages/phishingclub_${{ steps.get_version.outputs.VERSION }}_linux_arm64.tar.gz
packages/phishingclub_${{ steps.get_version.outputs.VERSION }}.tar.gz
retention-days: 2