From 9c49a083af18c1563c8c25fb3376f87d3fa45cff Mon Sep 17 00:00:00 2001 From: grog Date: Fri, 13 Oct 2023 17:37:16 -0700 Subject: [PATCH] added release template --- .github/workflows/build.yml | 27 ++++----------------------- release-template.md | 16 ++++++++++++++++ 2 files changed, 20 insertions(+), 23 deletions(-) create mode 100644 release-template.md diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index b9dcee6370..bbf9a253e2 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -43,31 +43,12 @@ jobs: increment: patch - name: Release + id: release uses: softprops/action-gh-release@v1 with: token: ${{ secrets.ACCESS_TOKEN }} files: ./target/myrobotlab.zip + name: "${{ steps.version.outputs.version }} Nixie" tag_name: ${{ steps.version.outputs.version }} - - # - name: Create Release - # id: create_release - # uses: actions/create-release@v1 - # env: - # # GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} default expires - # GITHUB_TOKEN: ${{ secrets.ACCESS_TOKEN }} - # with: - # tag_name: ${{ steps.version.outputs.version }} - # release_name: Release ${{ steps.version.outputs.version }} - # draft: false - # prerelease: false - - # - name: Upload Release Artifacts - # uses: actions/upload-release-asset@v1 - # env: - # # GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} default expires - # GITHUB_TOKEN: ${{ secrets.ACCESS_TOKEN }} - # with: - # upload_url: ${{ steps.create_release.outputs.upload_url }} - # asset_path: ./target/myrobotlab.zip - # asset_name: myrobotlab.zip - # asset_content_type: application/zip + generate_release_notes: true + body_path: diff --git a/release-template.md b/release-template.md new file mode 100644 index 0000000000..9704cfa430 --- /dev/null +++ b/release-template.md @@ -0,0 +1,16 @@ +## MyRobotLab Nixie Release + +Open Source Framework for Robotics and Creative Machine Control + + *You know, for robots!* + + +* Project Website http://myrobotlab.org + +* Project Discord https://discord.gg/AfScp5x8r5 + +* [JavDocs](https://build.myrobotlab.org:8443/job/myrobotlab/job/develop/$build/artifact/target/site/apidocs/org/myrobotlab/service/package-summary.html) + +## Base Requirements + +You will need Java 11 or newer. If you are only running MyRobotLab you need the JRE (Java Runtime Environment.) If you are going to be building from source, you'll need the JDK (Java Development Kit) Oracle or OpenJDK will work. \ No newline at end of file