From 5d77692a1c3a1974b23dc452b71afb72b3acd4c0 Mon Sep 17 00:00:00 2001 From: Kirill Bobyrev Date: Fri, 16 Oct 2020 15:23:23 +0200 Subject: [PATCH] Do not upload in autobuild job Artifacts are used to pass data from one job to another but we upload release assets in the same job we build them, hence artifacts are redundant. --- .github/workflows/autobuild.yaml | 5 ----- 1 file changed, 5 deletions(-) diff --git a/.github/workflows/autobuild.yaml b/.github/workflows/autobuild.yaml index bf0fc86..4bc312d 100644 --- a/.github/workflows/autobuild.yaml +++ b/.github/workflows/autobuild.yaml @@ -129,11 +129,6 @@ jobs: ${{ env.CLANGD_DIR }}/LICENSE.TXT ${{ env.CLANGD_DIR }}/bin/clangd* ${{ env.CLANGD_DIR }}/lib/clang - - name: Upload artifact - uses: actions/upload-artifact@v1 - with: - name: ${{ matrix.config.name }} - path: clangd.zip - name: Upload asset uses: actions/upload-release-asset@v1.0.1 env: { GITHUB_TOKEN: "${{ secrets.RELEASE_TOKEN }}" }