Good day.
There was a question - How to transfer a file between runners gitlabCi.
File - .gitlab-ci.yml
stages: - build - deploy - testing build:win: stage: build script: - 'chcp 65001' - msbuild Test-project.sln artifacts: untracked: false paths: - Test-project\bin\Debug\Test-project.exe expire_in: 1 week deploy: stage: deploy script: ? So, at the deploy stage, I want to take the resulting arithact from the gitlab, and put it on a runner. How can I do it.
PS While I was rummaging through the documentation, I saw that there was some kind of stable link to the last collected artifact, but now I have been unable to stumble upon this for 3 days. Everything happens on Windows machines, except for finding the Gitlab itself.