From 5a1877c7154d4a639ca28faead3f18576bff1853 Mon Sep 17 00:00:00 2001 From: "U-METAL103\\103" Date: Wed, 31 Jan 2024 01:57:46 -0600 Subject: [PATCH] work --- .github/workflows/build.yml | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 8a6de79..c13c3bf 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -71,11 +71,9 @@ jobs: tag_name: ${{ github.run_number }} body: ${{ github.event.head_commit.message }} - - name: testing - run: | - Compress-Archive -Path "${{ github.workspace }}\Digital Clock\bin\Release\" -Destination Release.zip - ls -R - + - name: Zipping up Release folder + run: Compress-Archive -Path "${{ github.workspace }}\Digital Clock\bin\Release\" -Destination Release.zip + - name: Upload Release uses: softprops/action-gh-release@v1 with: @@ -83,7 +81,7 @@ jobs: prerelease: false tag_name: ${{ github.run_number }} body: ${{ github.event.head_commit.message }} - files: build/Release.zip + files: ${{ github.workspace }}/Release.zip env: GITHUB_TOKEN: ${{ github.token }}