fix(ci): rewrite workflow with softprops/action-gh-release v2, single… #6
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Build and Release NexusDB Explorer | |
| on: | |
| push: | |
| tags: | |
| - 'explorer-v*' | |
| workflow_dispatch: | |
| inputs: | |
| version: | |
| description: 'Version tag (e.g., explorer-v0.1.0)' | |
| required: true | |
| type: string | |
| permissions: | |
| contents: write | |
| env: | |
| CARGO_TERM_COLOR: always | |
| jobs: | |
| build-macos-aarch64: | |
| runs-on: macos-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Setup pnpm | |
| uses: pnpm/action-setup@v4 | |
| with: | |
| version: 9 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 20 | |
| cache: 'pnpm' | |
| cache-dependency-path: nexus-explorer/src/frontend/pnpm-lock.yaml | |
| - name: Install Rust | |
| uses: dtolnay/rust-toolchain@stable | |
| with: | |
| targets: aarch64-apple-darwin | |
| - name: Install frontend dependencies | |
| run: | | |
| cd nexus-explorer/src/frontend | |
| pnpm install | |
| - name: Install Tauri CLI | |
| run: cargo install tauri-cli --version "^2" | |
| - name: Build .app and .dmg | |
| run: | | |
| cd nexus-explorer | |
| cargo tauri build --bundles app,dmg --target aarch64-apple-darwin | |
| - name: Zip .app bundle | |
| run: | | |
| APP_DIR="target/aarch64-apple-darwin/release/bundle/macos/NexusDB Explorer.app" | |
| zip -r -y "target/aarch64-apple-darwin/release/bundle/macos/NexusDB-Explorer-aarch64.app.zip" "$APP_DIR" | |
| - name: Release | |
| uses: softprops/action-gh-release@v2 | |
| with: | |
| files: | | |
| target/aarch64-apple-darwin/release/bundle/macos/NexusDB-Explorer-aarch64.app.zip | |
| target/aarch64-apple-darwin/release/bundle/dmg/NexusDB Explorer_*.dmg | |
| draft: false | |
| prerelease: false | |
| generate_release_notes: true |