diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 5a7c752..57fabd2 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -20,6 +20,7 @@ jobs: - name: Setup nuget uses: nuget/setup-nuget@v1 + - name: Build app run: msbuild SCTools\SCTools.sln /t:restore /t:SCTool_Redesigned:Rebuild /p:Configuration=Release /p:Platform="Any CPU" /p:RestorePackagesConfig=true -m @@ -28,7 +29,7 @@ jobs: uses: papeloto/action-zip@v1 with: files: SCTools\SCTool_Redesigned\bin\Release - dest: StagonPatcher.zip + dest: Release.zip - name: Delete tag and release uses: dev-drprasad/delete-tag-and-release@v0.1.3 @@ -42,8 +43,8 @@ jobs: uses: svenstaro/upload-release-action@v2 with: repo_token: ${{ secrets.GITHUB_TOKEN }} - file: StagonPatcher.zip - asset_name: StagonPatcher.zip + file: Release.zip + asset_name: Release.zip tag: dev prerelease: true overwrite: true diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index a46d98d..57c3401 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -39,7 +39,7 @@ jobs: uses: papeloto/action-zip@v1 with: files: SCTools\SCTool_Redesigned\bin\Release - dest: StagonPatcher.zip + dest: Release.zip - name: Get release id: get_release @@ -54,6 +54,6 @@ jobs: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: upload_url: ${{ steps.get_release.outputs.upload_url }} - asset_path: ./StagonPatcher.zip - asset_name: ShatgonPatcher.zip + asset_path: ./Release.zip + asset_name: Release.zip asset_content_type: application/zip