From ee84b8bd1d8e9cdc1950fc1879fc2229b2e60b33 Mon Sep 17 00:00:00 2001 From: Yimura Date: Tue, 11 Jan 2022 14:22:46 +0100 Subject: [PATCH] fix(Actions): Removed checksum from Windows step --- .github/workflows/nightly.yml | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml index 3528415b..175da3a0 100644 --- a/.github/workflows/nightly.yml +++ b/.github/workflows/nightly.yml @@ -51,17 +51,12 @@ jobs: run: ren BigBaseV2.dll YimMenu.dll working-directory: bin/Release/ - - name: Generate Hash for binary - run: powershell.exe "Get-FileHash YimMenu.dll | Select-Object -ExpandProperty Hash | Out-File sha256.checksum" - working-directory: bin/Release/ - - name: Upload Artifact uses: actions/upload-artifact@v2 with: name: binary path: | bin/Release/YimMenu.dll - bin/Release/sha256.checksum - name: Get commit short sha for nightly name id: short_sha @@ -70,7 +65,7 @@ jobs: create_release: runs-on: ubuntu-latest name: Create Release - needs: build-nightly + needs: build_nightly steps: - name: Download Artifact uses: actions/download-artifact@v2