作者:gerardlong | 来源:互联网 | 2023-02-02 12:30
1> Ishan..:
我已经能够找到解决我自己问题的方法。
解
从gitlab.com.gitlab-ci.yml
上的文件运行PowerShell命令/脚本 using the Gitlab CI, you need to make sure that the contents of your .gitlab-ci.yml file is as shown below.
注意:.gitlab-ci.yml
下面的方法无需在您自己的计算机上安装Gitlab Runner,并且已经在http://gitlab.com网站上进行了测试。
image: philippheuer/docker-gitlab-powershell
pages:
stage: deploy
script:
- mkdir .public
# run PowerShell Script
- powershell -File build.ps1
# run PowerShell Command
- powershell -Command "Get-Date"
- cp -r * .public
- mv .public public
artifacts:
paths:
- public
only:
- master