remove manual update, add endpoint to latest.json #35
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 Deploy Tauri App | |
| on: | |
| push: | |
| tags: | |
| - 'v*' | |
| branches: '*' | |
| workflow_dispatch: | |
| jobs: | |
| release: | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| platform: [macos-latest, ubuntu-latest, windows-latest] | |
| include: | |
| - os: ubuntu-latest | |
| rust_target: x86_64-unknown-linux-gnu | |
| - os: macos-latest | |
| rust_target: x86_64-apple-darwin | |
| - os: macos-latest | |
| rust_target: aarch64-apple-darwin | |
| - os: windows-latest | |
| rust_target: x86_64-pc-windows-msvc | |
| runs-on: ${{ matrix.platform }} | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v3 | |
| # for projects that use labels and PRs, | |
| # try https://github.com/mikepenz/release-changelog-builder-action instead | |
| # TODO: use API to collect commit messages | |
| - name: Release Changelog Builder | |
| # You may pin to the exact commit or the version. | |
| # uses: mikepenz/release-changelog-builder-action@f3fc77b47b74e78971fffecb2102ae6eac9a44d6 | |
| uses: mikepenz/release-changelog-builder-action@v5.0.0-rc02 | |
| - name: Node.js setup | |
| uses: actions/setup-node@v4.0.3 | |
| # NOTE: enterprise developers may hard code a version | |
| with: | |
| node-version: latest | |
| # node-version-file: '.nvmrc' | |
| - name: Install Rust (Stable) | |
| run: | |
| curl https://sh.rustup.rs -sSf | sh -s -- -y | |
| - name: Install dependencies (ubuntu only) | |
| if: matrix.platform == 'ubuntu-latest' | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get install -y libgtk-3-dev webkit2gtk-4.0 libappindicator3-dev librsvg2-dev patchelf | |
| - name: Install app dependencies and build web | |
| # NOTE: include yarn build if frontend has build script | |
| run: yarn install --frozen-lockfile # && yarn build | |
| - name: Build the app | |
| uses: tauri-apps/tauri-action@v0 | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| TAURI_PRIVATE_KEY: ${{ secrets.TAURI_PRIVATE_KEY }} | |
| TAURI_KEY_PASSWORD: ${{ secrets.TAURI_KEY_PASSWORD }} | |
| with: | |
| # tauri-action replaces \_\_VERSION\_\_ with the app version | |
| tagName: "v__VERSION__" | |
| releaseName: "Keysaver v__VERSION__" | |
| releaseBody: | | |
| ${{steps.build_changelog.outputs.changelog}} | |
| See the assets to download this version and install. |