Skip to content

Commit

Permalink
Attempting to fix release process
Browse files Browse the repository at this point in the history
  • Loading branch information
craigk5n committed Sep 11, 2023
1 parent 08dd732 commit 6d45152
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,12 @@ jobs:
- name: Copy files to release directory
run: |
while IFS= read -r file; do
echo "Copying $file"
cp --parents "$file" release-dir/
echo "Copying $file"
cp --parents "$file" WebCalendar-${{ env.RELEASE_VERSION }}/
done < release-files
- name: Zip the release
run: zip -r WebCalendar-${{ env.RELEASE_VERSION }}.zip release-dir/
run: zip -r WebCalendar-${{ env.RELEASE_VERSION }}.zip WebCalendar-${{ env.RELEASE_VERSION }}/

- name: Create GitHub Release
id: create_release
Expand Down

0 comments on commit 6d45152

Please sign in to comment.