diff --git a/.gitea/workflows/release-nightly.yaml b/.gitea/workflows/release-nightly.yaml new file mode 100644 index 0000000..0925484 --- /dev/null +++ b/.gitea/workflows/release-nightly.yaml @@ -0,0 +1,21 @@ +name: release-nightly + +on: + push: + branches: [main] + +jobs: + release-macos: + runs-on: macos-arm64 + steps: + - uses: actions/checkout@v4 + - name: Install NPM Packages + run: bun install + - name: Run tests + run: ng test --no-watch --no-progress --browsers=ChromeHeadless + - name: Build MacOS + run: bunx tauri build && echo 0 + - uses: actions/upload-artifact@v3 + with: + name: BufPiv_main + path: src-tauri/target/release/bundle/macos/ diff --git a/bun.lockb b/bun.lockb index fd4c857..9546164 100755 Binary files a/bun.lockb and b/bun.lockb differ diff --git a/package.json b/package.json index a1265fe..c9995b0 100644 --- a/package.json +++ b/package.json @@ -11,6 +11,7 @@ }, "private": true, "dependencies": { + "@angular-devkit/build-angular": "^18.1.0", "@angular/animations": "^18.1.0", "@angular/cdk": "^18.1.0", "@angular/common": "^18.1.0",