From c68ee0a81e68b85ebf887ad9253187cf54a3be0e Mon Sep 17 00:00:00 2001 From: NickAc <32451103+NickAcPT@users.noreply.github.com> Date: Sat, 30 May 2020 21:04:22 +0100 Subject: [PATCH] Remove upload of artifact to Actions' artifacts There is no need to upload the artifact to the Action itself since it will be uploaded to the release. --- .github/workflows/win-build-on-release.yml | 7 ------- 1 file changed, 7 deletions(-) diff --git a/.github/workflows/win-build-on-release.yml b/.github/workflows/win-build-on-release.yml index 85c4d4d..f74aaf0 100644 --- a/.github/workflows/win-build-on-release.yml +++ b/.github/workflows/win-build-on-release.yml @@ -29,13 +29,6 @@ jobs: - name: Build run: go build -v . - - - name: Upload Built Executable to Github Actions Artifacts - uses: actions/upload-artifact@v2 - with: - name: release.zip - # A file, directory or wildcard pattern that describes what to upload - path: ./ - name: Compress working folder run: Compress-Archive -Path .\* -DestinationPath release.zip