Updated workflow #8
This file contains 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: | |
- master | |
jobs: | |
v1: | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- platform: "macos-latest" | |
args: "--verbose --target universal-apple-darwin" | |
- platform: "ubuntu-20.04" | |
args: "--verbose" | |
- platform: "windows-latest" | |
args: "--verbose" | |
runs-on: ${{ matrix.platform }} | |
steps: | |
- uses: actions/checkout@v4 | |
# node | |
- name: install pnpm | |
uses: pnpm/action-setup@v4 | |
with: | |
version: 9.x.x | |
- name: setup node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: lts/* | |
cache: pnpm | |
# TODO: test the auto installation of the tauri cli | |
- name: install example dependencies | |
run: | | |
cd ./.github/fixtures/example-v1 | |
pnpm install | |
cd ../example-with-tauri-v1 | |
pnpm install | |
# rust | |
- name: install Rust stable | |
uses: dtolnay/rust-toolchain@stable | |
with: | |
targets: aarch64-apple-darwin,x86_64-apple-darwin | |
- uses: Swatinem/rust-cache@v2 | |
with: | |
cache-on-failure: true | |
workspaces: | | |
./.github/fixtures/example-v1/src-tauri -> ../../target | |
./.github/fixtures/example-with-tauri-v1/src-tauri -> ../../target | |
# system | |
- name: install dependencies (ubuntu only) | |
if: matrix.platform == 'ubuntu-20.04' | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y libwebkit2gtk-4.0-dev libappindicator3-dev librsvg2-dev | |
- name: Preconfigured Tauri Project | |
uses: ./ | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
# Updater signature is exposed here to make sure it works in PR's | |
TAURI_PRIVATE_KEY: dW50cnVzdGVkIGNvbW1lbnQ6IHJzaWduIGVuY3J5cHRlZCBzZWNyZXQga2V5ClJXUlRZMEl5YTBGV3JiTy9lRDZVd3NkL0RoQ1htZmExNDd3RmJaNmRMT1ZGVjczWTBKZ0FBQkFBQUFBQUFBQUFBQUlBQUFBQWdMekUzVkE4K0tWQ1hjeGt1Vkx2QnRUR3pzQjVuV0ZpM2czWXNkRm9hVUxrVnB6TUN3K1NheHJMREhQbUVWVFZRK3NIL1VsMDBHNW5ET1EzQno0UStSb21nRW4vZlpTaXIwZFh5ZmRlL1lSN0dKcHdyOUVPclVvdzFhVkxDVnZrbHM2T1o4Tk1NWEU9Cg== | |
with: | |
projectPath: ./.github/fixtures/example-with-tauri-v1 | |
includeDebug: true | |
includeRelease: false | |
tagName: ${{ !github.event.pull_request.head.repo.fork && 'example-with-tauri-v__VERSION__' || '' }} | |
releaseName: "Release example with preconfigured Tauri app v__VERSION__ for tauri-v1" | |
releaseBody: "See the assets to download this version and install." | |
releaseDraft: true | |
args: ${{ matrix.args }} | |
- name: Frontend-only Project | |
uses: ./ | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
# Updater signature is exposed here to make sure it works in PR's | |
TAURI_PRIVATE_KEY: dW50cnVzdGVkIGNvbW1lbnQ6IHJzaWduIGVuY3J5cHRlZCBzZWNyZXQga2V5ClJXUlRZMEl5YTBGV3JiTy9lRDZVd3NkL0RoQ1htZmExNDd3RmJaNmRMT1ZGVjczWTBKZ0FBQkFBQUFBQUFBQUFBQUlBQUFBQWdMekUzVkE4K0tWQ1hjeGt1Vkx2QnRUR3pzQjVuV0ZpM2czWXNkRm9hVUxrVnB6TUN3K1NheHJMREhQbUVWVFZRK3NIL1VsMDBHNW5ET1EzQno0UStSb21nRW4vZlpTaXIwZFh5ZmRlL1lSN0dKcHdyOUVPclVvdzFhVkxDVnZrbHM2T1o4Tk1NWEU9Cg== | |
with: | |
projectPath: ./.github/fixtures/example-v1 | |
distPath: ../dist # relative to tauri.conf.json | |
iconPath: ./icon.png # relative to projectPath | |
bundleIdentifier: com.tauri.actiontest | |
appName: example | |
appVersion: ../package.json # relative to tauri.conf.json | |
includeDebug: true | |
includeRelease: false | |
tagName: ${{ !github.event.pull_request.head.repo.fork && 'example-v__VERSION__' || '' }} | |
releaseName: "Release example app v__VERSION__ for tauri-v1" | |
releaseBody: "See the assets to download this version and install." | |
releaseDraft: true | |
args: ${{ matrix.args }} | |
- uses: tauri-apps/tauri-action@v0 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
tagName: app-v__VERSION__ # the action automatically replaces \_\_VERSION\_\_ with the app version. | |
releaseName: "App v__VERSION__" | |
releaseBody: "See the assets to download this version and install." | |
releaseDraft: true | |
prerelease: false | |
args: ${{ matrix.args }} |