(MAJOR)
* Add Pipeline version befor create artefact
This commit is contained in:
parent
00708e4f8b
commit
5f3e18232c
2 changed files with 9 additions and 9 deletions
15
.github/workflows/pipeline-release.yml
vendored
15
.github/workflows/pipeline-release.yml
vendored
|
@ -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: "<version-addhere>"
|
||||
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: "<version-addhere>"
|
||||
replace: "${{ steps.version.outputs.version }}"
|
||||
regex: false
|
||||
include: "artifact/config.mjs"
|
||||
|
||||
|
||||
- name: Archive Release for application
|
||||
uses: thedoctor0/zip-release@0.7.1
|
||||
|
|
|
@ -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);
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue