From ca67d71a849fc3b86c5c10f50917fd0a74df591a Mon Sep 17 00:00:00 2001 From: Xorcist Date: Fri, 5 Jul 2024 19:07:37 -0400 Subject: [PATCH] Add Release Notes - Added RELEASE.md - Updated main.yml Create Release step to use RELEASE.md --- .github/workflows/main.yml | 15 ++++++--------- RELEASE.md | 3 +++ 2 files changed, 9 insertions(+), 9 deletions(-) create mode 100644 RELEASE.md diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 25dd00d..e30c42f 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -38,13 +38,13 @@ jobs: - name: Create Archive run: Compress-Archive -Path ./bin/Release/* -Destination ./bin/Stateus_${{ github.ref_name }}.zip - + - name: Upload Artifact uses: actions/upload-artifact@v4 with: name: Stateus_${{ github.ref_name }} path: ./bin/Release - + - name: Create Release id: create_release uses: actions/create-release@v1 @@ -52,21 +52,18 @@ jobs: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # This token is provided by Actions, you do not need to create your own token with: tag_name: ${{ github.ref }} - release_name: ${{ github.ref_name }} Release of Stateus - body: | - Changes in this Release - - First Change - - Second Change + release_name: ${{ github.ref_name }} Release of Stateus + body_path: ./RELEASE.md draft: false prerelease: false - name: Upload Release Asset - id: upload-release-asset + id: upload-release-asset uses: actions/upload-release-asset@v1 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: - upload_url: ${{ steps.create_release.outputs.upload_url }} # This pulls from the CREATE RELEASE step above, referencing it's ID to get its outputs object, which include a `upload_url`. See this blog post for more info: https://jasonet.co/posts/new-features-of-github-actions/#passing-data-to-future-steps + upload_url: ${{ steps.create_release.outputs.upload_url }} # This pulls from the CREATE RELEASE step above, referencing it's ID to get its outputs object, which include a `upload_url`. See this blog post for more info: https://jasonet.co/posts/new-features-of-github-actions/#passing-data-to-future-steps asset_path: ./bin/Stateus_${{ github.ref_name }}.zip asset_name: Stateus_${{ github.ref_name }}.zip asset_content_type: application/zip diff --git a/RELEASE.md b/RELEASE.md new file mode 100644 index 0000000..218c8a4 --- /dev/null +++ b/RELEASE.md @@ -0,0 +1,3 @@ +- Added Logfile-Path command line + configuration file option +- Consolidated/Refactored logging method and output format +- Handled continued live time monitoring even if logging fails \ No newline at end of file