From 25df998dc2869a73ebd373de9a59d0b0c6f571ab Mon Sep 17 00:00:00 2001 From: Ed_ Date: Thu, 30 Mar 2023 20:44:57 -0400 Subject: [PATCH] Remove the readme upload. --- .github/workflows/main.yml | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 3fb2d27..150d732 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -90,8 +90,6 @@ jobs: New-Item -ItemType Directory -Path "./artifact" Copy-Item "./build/refactor.exe" -Destination "./artifact/refactor.exe" - Copy-Item "./Readme.md" -Destination "./artifact/Readme.md" - Compress-Archive -Path "./artifact/*" -DestinationPath "./artifact/artifact.zip" - name: Upload artifact @@ -141,15 +139,3 @@ jobs: asset_path: ./artifact/refactor.exe asset_name: refactor.exe asset_content_type: application/octet-stream - - - name: Upload README to the release - uses: actions/upload-release-asset@v1 - - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - - with: - upload_url: ${{ steps.create_release.outputs.upload_url }} - asset_path: ./artifact/Readme.md - asset_name: Readme.md - asset_content_type: text/markdown