From 5f3e18232cc86cc5644c1ea206f3a01cc98f0daf Mon Sep 17 00:00:00 2001 From: Entwicklung Date: Mon, 4 Dec 2023 23:15:51 +0100 Subject: [PATCH] (MAJOR) * Add Pipeline version befor create artefact --- .github/workflows/pipeline-release.yml | 15 ++++++++------- confernceUtils.mjs | 3 +-- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/pipeline-release.yml b/.github/workflows/pipeline-release.yml index 367efb2..5174cd7 100644 --- a/.github/workflows/pipeline-release.yml +++ b/.github/workflows/pipeline-release.yml @@ -34,6 +34,13 @@ jobs: minor_pattern: "(MINOR)" change_path: . version_format: "${major}.${minor}.${patch}" + - name: Write semantic Version in config file + uses: jacobtomlinson/gha-find-replace@v3 + with: + find: "" + replace: "${{ steps.version.outputs.version }}" + regex: false + include: "config.mjs" - uses: actions/download-artifact@v3 with: @@ -41,13 +48,7 @@ jobs: - run: unzip -qq artifact_${{github.run_number}}.zip -d artifact - - name: Write semantic Version in config file - uses: jacobtomlinson/gha-find-replace@v3 - with: - find: "" - replace: "${{ steps.version.outputs.version }}" - regex: false - include: "artifact/config.mjs" + - name: Archive Release for application uses: thedoctor0/zip-release@0.7.1 diff --git a/confernceUtils.mjs b/confernceUtils.mjs index daeb87c..eea1070 100644 --- a/confernceUtils.mjs +++ b/confernceUtils.mjs @@ -81,9 +81,8 @@ export class conferenceUtils { ' Sie können mit mir chatten wie mit einem normalen Teilnehmenden.\n\r' + ' Um auf alle meine Funktionen zugreifen zu können machen Sie mich bitte zu einem MODERATOR.\n\r' + ' Alle weiteren Informationen erhalten sie durch tippen von "!hilfe"'; + this.client.sendText(roomId, text); - - } }