Skip to content

Commit

Permalink
refactor: more logs
Browse files Browse the repository at this point in the history
  • Loading branch information
aoudiamoncef authored Dec 15, 2023
1 parent ef4b6b7 commit 0990bba
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -110,8 +110,11 @@ jobs:
# Create the release directory if it doesn't exist
mkdir -p "$release_dir"
pwd && ls -al
# Extract files from the temporary directory to the release directory
cd "$tmp_dir" || exit 1 # Move into the temporary directory
cd "$tmp_dir"
pwd && ls -al
for file in *; do
if [[ -f "$file" ]]; then # Check if it's a file
echo "Extracting $file..." # Display current file being processed
Expand Down

0 comments on commit 0990bba

Please sign in to comment.