feat(tests): add base testing #111
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: 'publish' | |
| on: | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| publish-tauri: | |
| permissions: | |
| contents: write | |
| strategy: | |
| fail-fast: true | |
| matrix: | |
| include: | |
| - platform: 'macos-latest' | |
| args: '--target universal-apple-darwin' | |
| - platform: 'ubuntu-24.04' | |
| args: '' | |
| - platform: 'windows-latest' | |
| args: '' | |
| runs-on: ${{ matrix.platform }} | |
| steps: | |
| - uses: actions/checkout@v6 | |
| with: | |
| submodules: 'recursive' | |
| - name: setup node | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version: latest | |
| - uses: pnpm/action-setup@v4 | |
| name: Install pnpm | |
| id: pnpm-install | |
| with: | |
| version: 10.24.0 | |
| run_install: true | |
| - name: install Rust stable | |
| uses: dtolnay/rust-toolchain@stable | |
| - name: Rust cache | |
| uses: swatinem/rust-cache@v2 | |
| with: | |
| workspaces: '. -> target' | |
| - name: Install rust target (macos only) | |
| if: startsWith(matrix.platform, 'macos') | |
| run: rustup target add x86_64-apple-darwin | |
| - name: install system dependencies (ubuntu only) | |
| if: startsWith(matrix.platform, 'ubuntu') | |
| run: ./utils/scripts/install_deps.sh --ci | |
| - name: Set short SHA | |
| id: short-sha | |
| run: echo "SHORT_SHA=$(git rev-parse --short HEAD)" >> "$GITHUB_OUTPUT" | |
| shell: bash | |
| - name: Set version id | |
| id: tauri-version | |
| run: echo "VERSION=$(cat ./src-tauri/tauri.conf.json | grep version | cut -d\" -f 4)" >> "$GITHUB_OUTPUT" | |
| shell: bash | |
| - name: Var check | |
| run: echo "SHORT_SHA=${{ steps.short-sha.outputs.SHORT_SHA }}, VERSION=${{ steps.tauri-version.outputs.VERSION }}" | |
| shell: bash | |
| - name: Read SUMRY file | |
| id: sumry | |
| run: | | |
| echo 'FILE<<EOF' >> $GITHUB_OUTPUT | |
| echo 'https://github.com/synthlabs/pepo/releases/tag/app-${{ steps.short-sha.outputs.SHORT_SHA }}' >> $GITHUB_OUTPUT | |
| echo '' >> $GITHUB_OUTPUT | |
| cat SUMRY.md | tail -n +3 >> $GITHUB_OUTPUT | |
| echo 'EOF' >> $GITHUB_OUTPUT | |
| - uses: tauri-apps/tauri-action@v0 | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| TAURI_SIGNING_PRIVATE_KEY: ${{ secrets.TAURI_PRIVATE_KEY }} | |
| TAURI_SIGNING_PRIVATE_KEY_PASSWORD: ${{ secrets.TAURI_KEY_PASSWORD }} | |
| with: | |
| tagName: app-${{ steps.tauri-version.outputs.VERSION }}-${{ steps.short-sha.outputs.SHORT_SHA }} | |
| releaseName: 'Pepo v${{ steps.tauri-version.outputs.VERSION }}-${{ steps.short-sha.outputs.SHORT_SHA }}' | |
| releaseBody: | | |
| ${{ steps.sumry.outputs.FILE }} | |
| includeUpdaterJson: true | |
| releaseDraft: false | |
| prerelease: false | |
| args: ${{ matrix.args }} |