Skip to content

Commit b92c510

Browse files
committed
chore(release): prepare beta release
1 parent 0eab53e commit b92c510

4 files changed

Lines changed: 24 additions & 5 deletions

File tree

.github/workflows/pages-demo.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,9 @@ jobs:
3434
- name: Activate pinned pnpm
3535
run: corepack install
3636

37+
- name: Configure Pages
38+
uses: actions/configure-pages@v5
39+
3740
- name: Install dependencies
3841
run: pnpm install --frozen-lockfile
3942

@@ -48,6 +51,21 @@ jobs:
4851
mkdir -p "pages/demo/${section}"
4952
cp pages/demo/index.html "pages/demo/${section}/index.html"
5053
done
54+
printf '%s\n' \
55+
'<!doctype html>' \
56+
'<html lang="en">' \
57+
' <head>' \
58+
' <meta charset="utf-8">' \
59+
' <meta name="viewport" content="width=device-width, initial-scale=1">' \
60+
' <meta http-equiv="refresh" content="0; url=/navet/demo/">' \
61+
' <title>Navet Demo</title>' \
62+
" <script>window.location.replace('/navet/demo/')</script>" \
63+
' </head>' \
64+
' <body>' \
65+
' <a href="/navet/demo/">Open the Navet demo</a>' \
66+
' </body>' \
67+
'</html>' \
68+
> pages/index.html
5169
5270
- name: Upload Pages artifact
5371
uses: actions/upload-pages-artifact@v3

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Navet turns Home Assistant into a dedicated smart home control surface. Use it f
1212
rooms you touch every day: lights, media, cameras, locks, energy, automations, weather, calendars,
1313
sensors, and custom dashboard widgets.
1414

15-
Current release: `0.1.0-beta.2`
15+
Current release: `0.1.0-beta.3`
1616

1717
## Why Navet
1818

docs/VERSIONING.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ Navet is currently in beta. Until the product contract is stable, use pre-`1.0`
55
## Current Phase
66

77
- Current release line: `0.x`
8-
- Current version: `0.1.0-beta.2`
9-
- Meaning: first structured beta milestone, second prerelease build in that milestone
8+
- Current version: `0.1.0-beta.3`
9+
- Meaning: first structured beta milestone, third prerelease build in that milestone
1010

1111
## Scheme
1212

@@ -20,6 +20,7 @@ Examples:
2020

2121
- `0.1.0-beta.1`
2222
- `0.1.0-beta.2`
23+
- `0.1.0-beta.3`
2324
- `0.1.0`
2425
- `0.1.1`
2526
- `0.2.0`
@@ -53,7 +54,7 @@ Recommended lightweight flow:
5354
1. Decide whether the change is `patch`, `minor`, or `beta prerelease`.
5455
2. Bump `package.json`.
5556
3. If the release meaning changed, update this file.
56-
4. Tag the commit with `v<version>`, for example `v0.1.0-beta.2`.
57+
4. Tag the commit with `v<version>`, for example `v0.1.0-beta.3`.
5758
5. Push the tag to GitHub to trigger [.github/workflows/github-release.yml](../.github/workflows/github-release.yml).
5859
6. If needed, manually run the container publish workflows for matching image tags.
5960

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "navet",
33
"private": true,
4-
"version": "0.1.0-beta.2",
4+
"version": "0.1.0-beta.3",
55
"description": "A smart home dashboard PWA for Home Assistant.",
66
"license": "AGPL-3.0-only",
77
"homepage": "https://github.com/awesomestvi/navet#readme",

0 commit comments

Comments
 (0)