Skip to content

Commit 7fb0483

Browse files
author
Thomas Nordquist
committed
chore: document release
1 parent 7d77110 commit 7fb0483

File tree

2 files changed

+19
-4
lines changed

2 files changed

+19
-4
lines changed

.github/workflows/ui-test.yml renamed to .github/workflows/ci.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
on: [push]
1+
on:
2+
pull_request_target: # Use pull_request_target
3+
branches: [master, beta, release]
24

35
jobs:
46
test:
@@ -15,6 +17,8 @@ jobs:
1517
- name: Build
1618
run: yarn build
1719
- name: Test
20+
run: yarn test
21+
- name: UI-Test
1822
run: yarn ui-test
1923
- name: Post-processing
2024
run: ./scripts/prepareVideo.sh

Readme.md

Lines changed: 14 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,12 @@
66
[![Build status](https://ci.appveyor.com/api/projects/status/c35tkm29rm4m5364/branch/master?svg=true)](https://ci.appveyor.com/project/thomasnordquist/mqtt-explorer/branch/master)
77
[![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)
88

9-
| | | |
10-
|:---:|:---:|:---:|
11-
|[![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)|
9+
| | | |
10+
| :---------------------------------------------------------------------------------------------------------------------------------: | :------------------------------------------------------------------------------------------------------------: | :------------------------------------------------------------------------------------------------------------: |
11+
| [![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) |
1212

1313
# The App has moved to [mqtt-explorer.com](https://mqtt-explorer.com)
14+
1415
MQTT Explorer is a comprehensive and easy-to-use MQTT Client.
1516
Downloads can be found at the link above.
1617

@@ -29,6 +30,7 @@ yarn start
2930
## Develop
3031

3132
Launch Application
33+
3234
```bash
3335
npm install -g yarn
3436
yarn
@@ -63,6 +65,15 @@ npm run build
6365
node dist/src/spec/webdriverio.js
6466
```
6567

68+
## Create a release
69+
70+
Create a PR to `release` branch.
71+
There needs to be a "feat: some new feature" or "fix: some bugfix" commit for a new release to be created
72+
73+
## Create a beta release
74+
75+
Create a PR to `beta` branch. A "feat" or "fix" commit is necessary to create a new version.
76+
6677
## Write docs
6778

6879
```

0 commit comments

Comments
 (0)