Compare commits
2 Commits
c9dafd76d1
...
7a137abb66
| Author | SHA1 | Date | |
|---|---|---|---|
| 7a137abb66 | |||
| 023b2ffdc5 |
@@ -25,17 +25,21 @@ jobs:
|
|||||||
- name: Run build
|
- name: Run build
|
||||||
run: npm run build
|
run: npm run build
|
||||||
|
|
||||||
- name: Package dist as zip
|
- name: Prepare release
|
||||||
run: |
|
run: |
|
||||||
cd dist
|
bash scripts/prepare_release.sh
|
||||||
zip -r ../vision-start-build.zip .
|
mv dist vision-start/
|
||||||
|
mv assets vision-start/
|
||||||
|
mv manifest.json vision-start/
|
||||||
|
|
||||||
- name: Upload build artifact
|
- name: Create zip archive
|
||||||
|
run: zip -r vision-start-${{ gitea.ref_name }}.zip vision-start
|
||||||
|
|
||||||
|
- name: Upload artifact
|
||||||
uses: actions/upload-artifact@v3
|
uses: actions/upload-artifact@v3
|
||||||
with:
|
with:
|
||||||
name: vision-start-build
|
name: release-zip
|
||||||
path: vision-start-build.zip
|
path: vision-start-${{ gitea.ref_name }}.zip
|
||||||
retention-days: 30
|
|
||||||
|
|
||||||
build_vision_start:
|
build_vision_start:
|
||||||
name: Build Vision Start Image
|
name: Build Vision Start Image
|
||||||
|
|||||||
@@ -29,6 +29,7 @@ jobs:
|
|||||||
run: |
|
run: |
|
||||||
bash scripts/prepare_release.sh
|
bash scripts/prepare_release.sh
|
||||||
mv dist vision-start/
|
mv dist vision-start/
|
||||||
|
mv assets vision-start/
|
||||||
mv manifest.json vision-start/
|
mv manifest.json vision-start/
|
||||||
- name: Create zip archive
|
- name: Create zip archive
|
||||||
run: zip -r vision-start-${{ gitea.ref_name }}.zip vision-start
|
run: zip -r vision-start-${{ gitea.ref_name }}.zip vision-start
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ Vision Start
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div style="display: flex; justify-content: center; font-size: 1.5rem;">
|
<div style="display: flex; justify-content: center; font-size: 1.5rem;">
|
||||||
A light liquid-glass, modern and customizable startpage built with React.
|
A light, modern and customizable startpage built with React.
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<span style="display: block; text-align: center; font-size: 1.2rem;">Try it here: <a href="http://vision-start.ivanch.me">http://vision-start.ivanch.me</a></span>
|
<span style="display: block; text-align: center; font-size: 1.2rem;">Try it here: <a href="http://vision-start.ivanch.me">http://vision-start.ivanch.me</a></span>
|
||||||
|
|||||||
BIN
assets/icons/vision-128.png
Normal file
BIN
assets/icons/vision-128.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 1.9 KiB |
BIN
assets/icons/vision-16.png
Normal file
BIN
assets/icons/vision-16.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 314 B |
BIN
assets/icons/vision-48.png
Normal file
BIN
assets/icons/vision-48.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 657 B |
@@ -2,14 +2,19 @@
|
|||||||
"manifest_version": 3,
|
"manifest_version": 3,
|
||||||
"name": "Vision Startpage",
|
"name": "Vision Startpage",
|
||||||
"version": "1.0",
|
"version": "1.0",
|
||||||
"description": "A beautiful and customizable startpage for your browser.",
|
"description": "A light, modern and customizable startpage.",
|
||||||
"chrome_url_overrides": {
|
"chrome_url_overrides": {
|
||||||
"newtab": "index.html"
|
"newtab": "index.html"
|
||||||
},
|
},
|
||||||
"permissions": [
|
"permissions": [
|
||||||
"storage"
|
"storage"
|
||||||
],
|
],
|
||||||
|
"icons": {
|
||||||
|
"16": "assets/icons/vision-16.png",
|
||||||
|
"48": "assets/icons/vision-48.png",
|
||||||
|
"128": "assets/icons/vision-128.png"
|
||||||
|
},
|
||||||
"content_security_policy": {
|
"content_security_policy": {
|
||||||
"extension_pages": "script-src 'self'; object-src 'self';"
|
"extension_pages": "script-src 'self'; object-src 'self';"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user