fixing some things
All checks were successful
Build and Release to Staging / Build Vision Start (push) Successful in 8s
Build and Release to Staging / Build Vision Start Image (push) Successful in 1m3s
Build and Release to Staging / Deploy Vision Start (staging) (push) Successful in 2s

This commit is contained in:
2026-07-10 20:34:43 -03:00
parent 95ae04ecd2
commit babd31548c
3 changed files with 18 additions and 3 deletions

View File

@@ -20,8 +20,13 @@ jobs:
steps: steps:
- name: Check out repository code - name: Check out repository code
uses: actions/checkout@v4 uses: actions/checkout@v4
- name: Setup required tools
run: sudo apt-get install zip jq curl -y
- name: Install JS dependencies - name: Install JS dependencies
run: npm install run: npm install
- name: Run build - name: Run build
run: npm run build run: npm run build
@@ -33,7 +38,9 @@ jobs:
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: |
cd vision-start
zip -r ../vision-start-${{ gitea.ref_name }}.zip *
- name: Upload artifact - name: Upload artifact
uses: actions/upload-artifact@v3 uses: actions/upload-artifact@v3

View File

@@ -19,20 +19,28 @@ jobs:
steps: steps:
- name: Check out repository code - name: Check out repository code
uses: actions/checkout@v4 uses: actions/checkout@v4
- name: Setup required tools - name: Setup required tools
run: sudo apt-get install zip jq curl -y run: sudo apt-get install zip jq curl -y
- name: Install JS dependencies - name: Install JS dependencies
run: npm install run: npm install
- name: Run build - name: Run build
run: npm run build run: npm run build
- name: Prepare release - name: Prepare release
run: | run: |
bash scripts/prepare_release.sh bash scripts/prepare_release.sh
mv dist vision-start/ mv dist vision-start/
mv extension vision-start/ mv extension 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: |
cd vision-start
zip -r ../vision-start-${{ gitea.ref_name }}.zip *
- name: Upload artifact - name: Upload artifact
uses: actions/upload-artifact@v3 uses: actions/upload-artifact@v3
with: with:

View File

@@ -1,7 +1,7 @@
{ {
"manifest_version": 3, "manifest_version": 3,
"name": "Vision Startpage", "name": "Vision Startpage",
"version": "1.0", "version": "1.0.0",
"description": "A light, modern and customizable startpage.", "description": "A light, modern and customizable startpage.",
"chrome_url_overrides": { "chrome_url_overrides": {
"newtab": "index.html" "newtab": "index.html"