返回提交历史
Modified
.github/workflows/copilot.yml
+1
-2
XFEstudio/gpt4free
Update copilot.yml
21bfadd5
代码差异
1 个文件
+1
-2
@@ -16,7 +16,6 @@ jobs:
16
16
- name: Checkout Repo
17
17
uses: actions/checkout@v3
18
18
- name: 'Download artifact'
19
id: "download"
20
19
uses: actions/github-script@v6
21
20
with:
22
21
script: |
@@ -42,7 +41,7 @@ jobs:
42
41
fs.writeFileSync(`${process.env.GITHUB_WORKSPACE}/pr_number.zip`, Buffer.from(download.data));
43
42
}
44
43
- name: 'Unzip artifact'
45
if: ${{ download.outputs.hasArtifact == 'true' }}
44
if: ${{ review.outputs.hasArtifact == 'true' }}
46
45
run: unzip pr_number.zip
47
46
- name: Setup Python
48
47
uses: actions/setup-python@v4