diff --git a/.github/workflows/msbuild48.yml b/.github/workflows/msbuild48.yml index 949a5461ce..df9ef2cc95 100644 --- a/.github/workflows/msbuild48.yml +++ b/.github/workflows/msbuild48.yml @@ -18,13 +18,14 @@ jobs: - name: Build run: msbuild /p:Configuration=Release OpenSim.sln - - uses: actions/upload-artifact@v3 + - name: release + run: zip -r LastBuild.zip bin ThirdPartyLicenses README.md CONTRIBUTORS.txt + - name: shortsha + id: vars + run: echo "::set-output name=sha_short::$(git rev-parse --short HEAD)" + - uses: softprops/action-gh-release@v1 with: + tag_name: ${{ steps.vars.outputs.sha_short }} name: OpenSimLastBuild - path: | - path/output/bin/ - ${GITHUB_WORKSPACE}/ThirdPartyLicenses/ - ${GITHUB_WORKSPACE}/ThirdPartyLicenses - ${GITHUB_WORKSPACE}/README.md - ${GITHUB_WORKSPACE}/CONTRIBUTORS.txt - + files: LastBuild.zip +