Gitlab CI 工件崩溃并显示 403
Gitlab CI artifacts crashes with 403
当我使用工件(Android-项目)制作 gitlab ci 时,构建本身运行没有问题。归档也没有问题,但是当涉及到 "Uploading artifacts" 时,ci 得到 403 - Forbidden。有人知道吗?
这是最后的日志条目:
Archiving cache...
INFO[0000] Creating archive cache.tgz ...
INFO[0000] Done!
Archiving artifacts...
INFO[0000] Creating archive artifacts.tgz ...
INFO[0000] Done!
Uploading artifacts...
8,7M artifacts.tgz
curl: (22) The requested URL returned error: 403 Forbidden
ERROR: Build failed with: exit status 1
这是gitlab的内部问题。修复 gitlab 文件夹中的所有目录权限后,主要问题得到解决,因此 apache 可以获得对必要文件夹的写入权限。
当我使用工件(Android-项目)制作 gitlab ci 时,构建本身运行没有问题。归档也没有问题,但是当涉及到 "Uploading artifacts" 时,ci 得到 403 - Forbidden。有人知道吗?
这是最后的日志条目:
Archiving cache...
INFO[0000] Creating archive cache.tgz ...
INFO[0000] Done!
Archiving artifacts...
INFO[0000] Creating archive artifacts.tgz ...
INFO[0000] Done!
Uploading artifacts...
8,7M artifacts.tgz
curl: (22) The requested URL returned error: 403 Forbidden
ERROR: Build failed with: exit status 1
这是gitlab的内部问题。修复 gitlab 文件夹中的所有目录权限后,主要问题得到解决,因此 apache 可以获得对必要文件夹的写入权限。