Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions .github/workflows/linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,14 +77,15 @@ jobs:
mkdir -vp "${dir}"
cp -av `dcmd *.changes` "${dir}"
done
# create or update linux-latest symlink
# create or update linux-deb-latest symlink
mkdir -vp /fileserver-downloads/qcom-deb-images
(
cd /fileserver-downloads/qcom-deb-images
# remove what used to be a directory and create/update symlink to
# point to latest build
rm -rvf linux-latest
ln -svf "../${BUILD_ID}" linux-latest
rm -rvf linux-deb-latest
ln -svf "../${BUILD_ID}" linux-deb-latest
)
# perhaps help NFS sync
sync
Expand Down
Loading