.tar build exploration
Some checks failed
Build & Upload tux-dock / build (push) Failing after 7s

This commit is contained in:
mrkmntal 2025-11-03 17:51:34 -05:00
commit c53d4a98fb

View file

@ -24,15 +24,17 @@ jobs:
- name: Verify build
run: file tux-dock
- name: Prepare artifact directory
- name: Package build as tar
run: |
mkdir -p build/${{ github.ref_name }}
chmod +x tux-dock
mv tux-dock build/${{ github.ref_name }}/
echo "📁 Prepared build directory: build/${{ github.ref_name }}/tux-dock"
tar czf tux-dock-linux-x86_64-${{ github.ref_name }}.tar.gz -C build ${ { github.ref_name } }
echo "📦 Created tarball with preserved permissions"
- name: Upload build artifact
uses: actions/upload-artifact@v3
with:
name: tux-dock-linux-x86_64
path: build/
name: tux-dock-linux-x86_64-${{ github.ref_name }}
path: tux-dock-linux-x86_64-${{ github.ref_name }}.tar.gz