We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9676c62 commit 75e79a3Copy full SHA for 75e79a3
.github/workflows/u-boot.yml
@@ -70,9 +70,19 @@ jobs:
70
- name: Upload results to fileserver space for downloads
71
run: |
72
set -ux
73
- export BUILD_DIR="/fileserver-downloads/qcom-deb-images/u-boot-rb1-latest"
+ export BUILD_DIR="/fileserver-downloads/${BUILD_ID}"
74
mkdir -vp "${BUILD_DIR}"
75
cp -av artifacts/* "${BUILD_DIR}"
76
+
77
+ # create or update u-boot-rb1-latest symlink
78
+ mkdir -vp /fileserver-downloads/qcom-deb-images
79
+ (
80
+ cd /fileserver-downloads/qcom-deb-images
81
+ # remove what used to be a directory and create/update symlink to
82
+ # point to latest build
83
+ rm -rvf u-boot-rb1-latest
84
+ ln -svf "../${BUILD_ID}" u-boot-rb1-latest
85
+ )
86
# perhaps help NFS sync
87
sync
88
0 commit comments