diff --git a/.github/workflows/qa.yml b/.github/workflows/qa.yml index 4d473c7c..ead5c624 100644 --- a/.github/workflows/qa.yml +++ b/.github/workflows/qa.yml @@ -23,13 +23,13 @@ jobs: run: dotnet restore FModel - name: .NET Publish - run: dotnet publish FModel -c Release --no-restore --no-self-contained -r win-x64 -f net8.0-windows -o "./FModel/bin/Publish/" -p:PublishReadyToRun=false -p:PublishSingleFile=true -p:DebugType=None -p:GenerateDocumentationFile=false -p:DebugSymbols=false + run: dotnet publish "./FModel/FModel.csproj" -c Release --no-restore --no-self-contained -r win-x64 -f net8.0-windows -o "./FModel/bin/Publish/" -p:PublishReadyToRun=false -p:PublishSingleFile=true -p:DebugType=None -p:GenerateDocumentationFile=false -p:DebugSymbols=false - name: ZIP File uses: thedoctor0/zip-release@0.7.6 with: - type: 7z - filename: ${{ github.sha }}.7z # will end up in working directory not the Publish folder + type: zip + filename: ${{ github.sha }}.zip # will end up in working directory not the Publish folder path: ./FModel/bin/Publish/FModel.exe - name: Edit QA Artifact @@ -39,7 +39,7 @@ jobs: name: 'FModel QA Testing' body: 'Dev builds' tag: 'qa' - artifacts: ${{ github.sha }}.7z + artifacts: ${{ github.sha }}.zip prerelease: true allowUpdates: true @@ -62,4 +62,4 @@ jobs: url: "https://api.fmodel.app/v1/infos/${{ secrets.QA_ID }}" method: "PATCH" bearerToken: ${{ fromJson(steps.fmodel_auth.outputs.response).accessToken }} - data: '{"version": "${{ steps.package_version.outputs.version }}-dev+${{ github.sha }}", "downloadUrl": "https://github.com/4sval/FModel/releases/download/qa/${{ github.sha }}.7z"}' + data: '{"version": "${{ steps.package_version.outputs.version }}-dev+${{ github.sha }}", "downloadUrl": "https://github.com/4sval/FModel/releases/download/qa/${{ github.sha }}.zip"}'