3 Commits
v0.1 ... v0.1.3

Author SHA1 Message Date
3aff7ffed6 whoopsie
All checks were successful
Build and Release / build (push) Successful in 12s
Build and Release / release (push) Successful in 12s
2025-07-30 17:40:30 -03:00
9e80818fc5 redoing pipelines
All checks were successful
Build and Release / build (push) Successful in 11s
Build and Release / release (push) Has been skipped
2025-07-30 17:40:02 -03:00
140119cb99 changing pipeline 🤓
All checks were successful
Build and Release / build (push) Successful in 11s
Build and Release / release (push) Has been skipped
2025-07-30 17:38:13 -03:00
2 changed files with 32 additions and 27 deletions

View File

@@ -4,7 +4,6 @@ on:
push:
branches:
- main
tag:
jobs:
build:
@@ -17,29 +16,3 @@ jobs:
run: npm install
- name: Run build
run: npm run build
release:
if: gitea.event_name == 'tag'
runs-on: ubuntu-latest
steps:
- name: Check out repository code
uses: actions/checkout@v4
- name: Setup zip
run: sudo apt-get install zip -y
- name: Install JS dependencies
run: npm install
- name: Run build
run: npm run build
- name: Prepare release
run: |
bash scripts/prepare_release.sh
mv dist vision-start/
mv manifest.json vision-start/
- name: Create zip archive
run: zip -r vision-start-${{ gitea.ref_name }}.zip vision-start
- name: Release zip
uses: akkuman/gitea-release-action@v1
with:
name: ${{ gitea.ref_name }}
tag_name: ${{ gitea.ref_name }}
files: vision-start-${{ gitea.ref_name }}.zip

View File

@@ -0,0 +1,32 @@
name: Build and Release
on:
push:
tags:
- v*
jobs:
release:
runs-on: ubuntu-latest
steps:
- name: Check out repository code
uses: actions/checkout@v4
- name: Setup zip
run: sudo apt-get install zip -y
- name: Install JS dependencies
run: npm install
- name: Run build
run: npm run build
- name: Prepare release
run: |
bash scripts/prepare_release.sh
mv dist vision-start/
mv manifest.json vision-start/
- name: Create zip archive
run: zip -r vision-start-${{ gitea.ref_name }}.zip vision-start
- name: Release zip
uses: akkuman/gitea-release-action@v1
with:
name: ${{ gitea.ref_name }}
tag_name: ${{ gitea.ref_name }}
files: vision-start-${{ gitea.ref_name }}.zip