fix: More logging

This commit is contained in:
Ginger 2025-09-10 09:20:01 -04:00
commit d8f6c0fc67
No known key found for this signature in database

View file

@ -104,13 +104,16 @@ jobs:
VERSION=$(curl -s https://index.crates.io/ca/rg/cargo-deb | tail -n1 | jq -r .vers) VERSION=$(curl -s https://index.crates.io/ca/rg/cargo-deb | tail -n1 | jq -r .vers)
echo "version=$VERSION" >> $GITHUB_OUTPUT echo "version=$VERSION" >> $GITHUB_OUTPUT
echo "Latest cargo-deb version: $VERSION" echo "Latest cargo-deb version: $VERSION"
echo ~
echo ${{ forge.workspace }}
ls -alh ~/.cargo/bin ls -alh ~/.cargo/bin
ls -alh ${{ forge.workspace }}/.cargo/bin
- name: Cache cargo-deb installation - name: Cache cargo-deb installation
id: cache-cargo-deb id: cache-cargo-deb
uses: actions/cache@v3 uses: actions/cache@v3
with: with:
path: ~/.cargo/bin/cargo-deb path: ${{ forge.workspace }}/.cargo/bin/cargo-deb
key: cargo-deb-${{ steps.debian-version.outputs.distribution }}-${{ steps.cargo-deb-version.outputs.version }} key: cargo-deb-${{ steps.debian-version.outputs.distribution }}-${{ steps.cargo-deb-version.outputs.version }}
- name: Install cargo-deb - name: Install cargo-deb