From 589f05d2c8b9338abb91120df4de2071bae98d7b Mon Sep 17 00:00:00 2001 From: Sebastian Ullrich Date: Fri, 11 Feb 2022 10:02:54 +0100 Subject: [PATCH] chore: CI: do not delete nightly artifacts before uploading them --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a72d2ee40f..3e649854aa 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -215,15 +215,15 @@ jobs: if: needs.set-nightly.outputs.nightly runs-on: ubuntu-latest steps: - - uses: actions/download-artifact@v2 - with: - path: artifacts - name: Checkout uses: actions/checkout@v2 with: # needed for tagging fetch-depth: 0 token: ${{ secrets.PUSH_NIGHTLY_TOKEN }} + - uses: actions/download-artifact@v2 + with: + path: artifacts - name: Prepare Nightly Release run: | git remote add nightly https://foo:'${{ secrets.PUSH_NIGHTLY_TOKEN }}'@github.com/${{ github.repository_owner }}/lean4-nightly.git