chore: document release

This commit is contained in:
Thomas Nordquist
2024-05-11 12:03:01 +02:00
parent 7d77110c1f
commit 7fb0483889
2 changed files with 19 additions and 4 deletions

View File

@@ -1,4 +1,6 @@
on: [push] on:
pull_request_target: # Use pull_request_target
branches: [master, beta, release]
jobs: jobs:
test: test:
@@ -15,6 +17,8 @@ jobs:
- name: Build - name: Build
run: yarn build run: yarn build
- name: Test - name: Test
run: yarn test
- name: UI-Test
run: yarn ui-test run: yarn ui-test
- name: Post-processing - name: Post-processing
run: ./scripts/prepareVideo.sh run: ./scripts/prepareVideo.sh

View File

@@ -7,10 +7,11 @@
[![Codacy Badge](https://api.codacy.com/project/badge/Grade/47b26e03fce543ceac7914214482334a)](https://app.codacy.com/app/thomasnordquist/MQTT-Explorer?utm_source=github.com&utm_medium=referral&utm_content=thomasnordquist/MQTT-Explorer&utm_campaign=Badge_Grade_Dashboard) [![Codacy Badge](https://api.codacy.com/project/badge/Grade/47b26e03fce543ceac7914214482334a)](https://app.codacy.com/app/thomasnordquist/MQTT-Explorer?utm_source=github.com&utm_medium=referral&utm_content=thomasnordquist/MQTT-Explorer&utm_campaign=Badge_Grade_Dashboard)
| | | | | | | |
|:---:|:---:|:---:| | :---------------------------------------------------------------------------------------------------------------------------------: | :------------------------------------------------------------------------------------------------------------: | :------------------------------------------------------------------------------------------------------------: |
|[![screen_composite](https://mqtt-explorer.com/img/screen-composite_small.png)](https://mqtt-explorer.com/img/screen-composite.png)|[![screen2_small](https://mqtt-explorer.com/img/screen2_small.png)](https://mqtt-explorer.com/img/screen2.png)|[![screen3_small](https://mqtt-explorer.com/img/screen3_small.png)](https://mqtt-explorer.com/img/screen3.png)| | [![screen_composite](https://mqtt-explorer.com/img/screen-composite_small.png)](https://mqtt-explorer.com/img/screen-composite.png) | [![screen2_small](https://mqtt-explorer.com/img/screen2_small.png)](https://mqtt-explorer.com/img/screen2.png) | [![screen3_small](https://mqtt-explorer.com/img/screen3_small.png)](https://mqtt-explorer.com/img/screen3.png) |
# The App has moved to [mqtt-explorer.com](https://mqtt-explorer.com) # The App has moved to [mqtt-explorer.com](https://mqtt-explorer.com)
MQTT Explorer is a comprehensive and easy-to-use MQTT Client. MQTT Explorer is a comprehensive and easy-to-use MQTT Client.
Downloads can be found at the link above. Downloads can be found at the link above.
@@ -29,6 +30,7 @@ yarn start
## Develop ## Develop
Launch Application Launch Application
```bash ```bash
npm install -g yarn npm install -g yarn
yarn yarn
@@ -63,6 +65,15 @@ npm run build
node dist/src/spec/webdriverio.js node dist/src/spec/webdriverio.js
``` ```
## Create a release
Create a PR to `release` branch.
There needs to be a "feat: some new feature" or "fix: some bugfix" commit for a new release to be created
## Create a beta release
Create a PR to `beta` branch. A "feat" or "fix" commit is necessary to create a new version.
## Write docs ## Write docs
``` ```