我的公司创建了一种在环境之间移动文件的复杂方法,现在我们希望将某些已构建的JS文件(已编译和缩小)从一个github存储库移动到另一个github存储库。使用github动作有可能吗?
答案 0 :(得分:0)
最简单的选择是克隆目标存储库,将文件复制到目标存储库,使用git命令行暂存文件,然后提交它们。在脚本步骤中添加以下代码
run: |
git clone https://.:${{ secrets.GITHUB_TOKEN }}@github.com/project target
rm target
copy source\files target
git add target
git commit -m "Automatic publish from github.com/prject"
git push target master