|
| 1 | +name: 'trendline' |
| 2 | + |
| 3 | +on: |
| 4 | + push: |
| 5 | + branches: |
| 6 | + - release |
| 7 | + |
| 8 | +# This workflow will trigger on each push to the `release` branch to create or update a GitHub release, build your app, and upload the artifacts to the release. |
| 9 | + |
| 10 | +jobs: |
| 11 | + publish-tauri: |
| 12 | + permissions: |
| 13 | + contents: write |
| 14 | + strategy: |
| 15 | + fail-fast: false |
| 16 | + matrix: |
| 17 | + include: |
| 18 | + - platform: 'macos-latest' # for Arm based macs (M1 and above). |
| 19 | + args: '--target aarch64-apple-darwin' |
| 20 | + - platform: 'macos-latest' # for Intel based macs. |
| 21 | + args: '--target x86_64-apple-darwin' |
| 22 | + - platform: 'ubuntu-22.04' # for Tauri v1 you could replace this with ubuntu-20.04. |
| 23 | + args: '' |
| 24 | + - platform: 'windows-latest' |
| 25 | + args: '' |
| 26 | + |
| 27 | + runs-on: ${{ matrix.platform }} |
| 28 | + steps: |
| 29 | + - uses: actions/checkout@v4 |
| 30 | + |
| 31 | + - name: setup node |
| 32 | + uses: actions/setup-node@v4 |
| 33 | + with: |
| 34 | + node-version: lts/* |
| 35 | + |
| 36 | + - name: install Rust stable |
| 37 | + uses: dtolnay/rust-toolchain@stable |
| 38 | + with: |
| 39 | + # Those targets are only used on macos runners so it's in an `if` to slightly speed up windows and linux builds. |
| 40 | + targets: ${{ matrix.platform == 'macos-latest' && 'aarch64-apple-darwin,x86_64-apple-darwin' || '' }} |
| 41 | + |
| 42 | + - name: install dependencies (ubuntu only) |
| 43 | + if: matrix.platform == 'ubuntu-22.04' # This must match the platform value defined above. |
| 44 | + run: | |
| 45 | + sudo apt-get update |
| 46 | + sudo apt-get install -y libwebkit2gtk-4.0-dev libwebkit2gtk-4.1-dev libappindicator3-dev librsvg2-dev patchelf |
| 47 | + # webkitgtk 4.0 is for Tauri v1 - webkitgtk 4.1 is for Tauri v2. |
| 48 | + # You can remove the one that doesn't apply to your app to speed up the workflow a bit. |
| 49 | + |
| 50 | + - name: install frontend dependencies |
| 51 | + run: yarn install # change this to npm, pnpm or bun depending on which one you use. |
| 52 | + |
| 53 | + - uses: tauri-apps/tauri-action@v0 |
| 54 | + env: |
| 55 | + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |
| 56 | + with: |
| 57 | + tagName: app-v__VERSION__ # the action automatically replaces \_\_VERSION\_\_ with the app version. |
| 58 | + releaseName: 'App v__VERSION__' |
| 59 | + releaseBody: 'See the assets to download this version and install.' |
| 60 | + releaseDraft: true |
| 61 | + prerelease: false |
| 62 | + args: ${{ matrix.args }} |
0 commit comments