Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .github/workflows/publish-tauri.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
name: Release
name: Publish Tauri
on:
push:
tags:
- 'v*'
- "v*"
workflow_dispatch:

jobs:
Expand All @@ -27,13 +27,13 @@ jobs:

- name: install Rust stable
uses: dtolnay/rust-toolchain@stable

- name: install dependencies (ubuntu only)
if: matrix.platform == 'ubuntu-20.04'
run: |
sudo apt-get update
sudo apt-get install -y libgtk-3-dev libwebkit2gtk-4.0-dev libayatana-appindicator3-dev librsvg2-dev

- name: install frontend dependencies
run: yarn install # change this to npm or pnpm depending on which one you use
working-directory: ${{env.working-directory}}
Expand All @@ -47,4 +47,4 @@ jobs:
releaseBody: "See the assets to download this version and install."
releaseDraft: true
prerelease: false
projectPath: ${{env.working-directory}}
projectPath: ${{env.working-directory}}
5 changes: 3 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Release-plz
name: Release

permissions:
pull-requests: write
Expand All @@ -21,7 +21,8 @@ jobs:
- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@stable
- name: Run release-plz
uses: MarcoIeni/release-plz-action@v0.5
# See https://github.com/MarcoIeni/release-plz/issues/1360#issuecomment-2016863525
uses: MarcoIeni/release-plz-action@v0.5.44
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}
2 changes: 1 addition & 1 deletion .github/workflows/test-on-pr-desktop.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: "Test on PR for Desktop"
name: Test Tauri

on: [pull_request]

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-on-pr.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: "Test on PR with Earthly"
name: Test with Earthly
on: [pull_request]

env:
Expand Down
5 changes: 5 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,8 @@
resolver = "2"
members = ["crates/*", "terraphim_server", "desktop/src-tauri"]
default-members = ["terraphim_server"]

# CI build creates artifacts that are not part of the repo
# Allow to publish with release-plz even if there are uncommitted changes
# See https://github.com/MarcoIeni/release-plz/issues/1360
allow_dirty = true