【发布时间】:2020-11-26 06:17:45
【问题描述】:
我有以下步骤将文件复制到工件并发布工件:
- name: copy FA function arm templates
run: Copy 'Service/Project/Hosts/FA/Infrastructure/' 'upload/functions_arm_templates/FA/Infrastructure'
shell: powershell
- name: copy FB function arm templates
run: Copy 'Service/Project/Hosts/FB/Infrastructure/' 'upload/functions_arm_templates/FB/Infrastructure'
shell: powershell
- name: publish artifact
uses: actions/upload-artifact@v2
with:
name: ${{github.run_number}}
path: upload/**
构建成功,但是在下载工件后,我没有看到名为 functions_arm_templates 的文件夹。我错过了什么?
【问题讨论】:
-
请将
upload-artifact步骤的日志添加到您的帖子中。这些文件夹中有文件吗?
标签: github github-actions