diff options
author | H Lohaus <hlohaus@users.noreply.github.com> | 2024-01-21 17:33:54 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-21 17:33:54 +0100 |
commit | 4f18d864be6a2b24bace248010969404b28333f6 (patch) | |
tree | 4746b00b6b27769819d90b82c20fd4c374441169 /.github/workflows/copilot.yml | |
parent | Merge pull request #1491 from hlohaus/neww (diff) | |
parent | First checkout repo (diff) | |
download | gpt4free-4f18d864be6a2b24bace248010969404b28333f6.tar gpt4free-4f18d864be6a2b24bace248010969404b28333f6.tar.gz gpt4free-4f18d864be6a2b24bace248010969404b28333f6.tar.bz2 gpt4free-4f18d864be6a2b24bace248010969404b28333f6.tar.lz gpt4free-4f18d864be6a2b24bace248010969404b28333f6.tar.xz gpt4free-4f18d864be6a2b24bace248010969404b28333f6.tar.zst gpt4free-4f18d864be6a2b24bace248010969404b28333f6.zip |
Diffstat (limited to '')
-rw-r--r-- | .github/workflows/copilot.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/copilot.yml b/.github/workflows/copilot.yml index 63d3e2ba..6e06f6c7 100644 --- a/.github/workflows/copilot.yml +++ b/.github/workflows/copilot.yml @@ -13,6 +13,8 @@ jobs: contents: read pull-requests: write steps: + - name: Checkout Repo + uses: actions/checkout@v3 - name: 'Download artifact' uses: actions/github-script@v6 with: @@ -35,8 +37,6 @@ jobs: fs.writeFileSync(`${process.env.GITHUB_WORKSPACE}/pr_number.zip`, Buffer.from(download.data)); - name: 'Unzip artifact' run: unzip pr_number.zip - - name: Checkout Repo - uses: actions/checkout@v3 - name: Setup Python uses: actions/setup-python@v4 with: |