【发布时间】:2020-08-21 06:46:42
【问题描述】:
我正在尝试将我的 Android 项目从 CircleCI 迁移到 Github Actions,并且我已按照 Github 页面上的指南进行操作。当我到达这部分时
- name: Upload math result for job 1
uses: actions/upload-artifact@v1
with:
name: homework
path: math-homework.txt
我遇到的问题是我曾经有多个路径,我无法让它与以下几行一起工作
paths:
- 'app/build/test-results'
- 'app/build/tmp'
所以我的问题是如何在此配置中添加多个路径?感谢阅读!
【问题讨论】:
标签: android github continuous-integration github-actions