From 1e59e8c5ea0964e49091c3115920663cacadd092 Mon Sep 17 00:00:00 2001 From: Nanne Baars Date: Sat, 27 Mar 2021 15:56:32 +0100 Subject: [PATCH] WIP --- .github/workflows/release.yml | 55 +++++++++++++++++++++-------------- 1 file changed, 33 insertions(+), 22 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 742b7fa02..fc85ab811 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -52,12 +52,45 @@ jobs: github_release: name: Create Release runs-on: ubuntu-latest + needs: build steps: - name: "Checkout code" uses: actions/checkout@v2 - name: "Get tag name" id: tag uses: dawidd6/action-get-tag@v1 + - name: "Create release" + uses: softprops/action-gh-release@v1 + with: + draft: false + files: | + webgoat-server/target/*.jar + webwolf/target/*.jar + body: | + ## Version 8. + + ### New functionality + + - test + + ### Bug fixes + + - [#743 - Character encoding errors](https://github.com/WebGoat/WebGoat/issues/743) + + + ## Contributors + + Special thanks to the following contributors providing us with a pull request: + + - Person 1 + - Person 2 + + And everyone who provided feedback through Github. + + + Team WebGoat + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - name: Create Release id: create_release uses: actions/create-release@v1 @@ -66,28 +99,6 @@ jobs: with: tag_name: ${{ steps.tag.outputs.tag }} release_name: ${{ steps.tag.outputs.tag }} - body: | - ## Version 8. - ### New functionality - - - test - - ### Bug fixes - - - [#743 - Character encoding errors](https://github.com/WebGoat/WebGoat/issues/743) - - - ## Contributors - - Special thanks to the following contributors providing us with a pull request: - - - Person 1 - - Person 2 - - And everyone who provided feedback through Github. - - - Team WebGoat draft: false prerelease: false \ No newline at end of file