Skip to content

Commit

Permalink
Attempting to fix release process #2
Browse files Browse the repository at this point in the history
  • Loading branch information
craigk5n committed Sep 11, 2023
1 parent 6d45152 commit 94a9e11
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,9 @@ jobs:
run: |
while IFS= read -r file; do
echo "Copying $file"
cp --parents "$file" WebCalendar-${{ env.RELEASE_VERSION }}/
# Ensure that the target directory structure exists
mkdir -p WebCalendar-1.9.8/$(dirname "$file")
cp "$file" WebCalendar-1.9.8/"$file"
done < release-files
- name: Zip the release
Expand Down

0 comments on commit 94a9e11

Please sign in to comment.