Skip to content

Commit

Permalink
Try to fix the windows build publish issue
Browse files Browse the repository at this point in the history
As per the error log, it seems that the 'ln -fs' command after 'else' was never executed.
  • Loading branch information
nyanmisaka authored and tandy-1000 committed Jun 23, 2022
1 parent 15cf37b commit c085098
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,8 @@ jobs:
find /srv/repository/releases/server/${{ matrix.arrays.distro }}/ -type l -name "${basename}_*" -exec rm {} \;
reprepro -b /srv/repository/${{ matrix.arrays.distro }} deleteunreferenced
reprepro -b /srv/repository/${{ matrix.arrays.distro }} export
else
fi
if [ "${{ matrix.arrays.distro }}" == "windows" ]; then
ln -fs /srv/repository/releases/server/${{ matrix.arrays.distro }}/versions/jellyfin-ffmpeg/${version}/${basename}_*.zip /srv/repository/releases/server/${{ matrix.arrays.distro }}/versions/jellyfin-ffmpeg/${version}/jellyfin-ffmpeg.zip
fi
rm -f /srv/repository/releases/server/${{ matrix.arrays.distro }}/ffmpeg
Expand Down

0 comments on commit c085098

Please sign in to comment.