Skip to content

Commit 26cf58e

Browse files
committed
more verbose tarball generation
1 parent 49e663f commit 26cf58e

1 file changed

Lines changed: 7 additions & 2 deletions

File tree

.github/workflows/release.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,13 @@ jobs:
3838
shell: bash
3939
run: |
4040
cd target/${{ matrix.target }}/release
41-
tar czvf ../../../minos-codex-${{ matrix.target }}-${{ matrix.os }}.tar.gz minos-codex*
41+
echo "Current directory:"
42+
pwd
43+
echo "Files available for packaging:"
44+
ls -l
45+
tar czvf ../../../minos-codex-${{ matrix.target }}-${{ matrix.os }}.tar.gz minos-codex* || echo "Tar command failed with exit code $?"
46+
echo "Check if tar.gz was created:"
47+
ls -l ../../../
4248
cd -
4349
4450
- name: List Packaged Files
@@ -66,4 +72,3 @@ jobs:
6672
target/${{ matrix.target }}/release/minos-codex-${{ matrix.target }}-${{ matrix.os }}.sha256
6773
env:
6874
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
69-

0 commit comments

Comments
 (0)