mirror of
https://github.com/ivabus/gui
synced 2025-06-07 07:40:27 +03:00
update dependencies move to apt-get
This commit is contained in:
parent
84698c3669
commit
f903885cc9
2 changed files with 6 additions and 9 deletions
12
.github/workflows/ci.yml
vendored
12
.github/workflows/ci.yml
vendored
|
@ -147,7 +147,7 @@ jobs:
|
|||
|
||||
- name: build tauri for MacOS
|
||||
uses: teaxyz/setup@v0
|
||||
if: matrix.platform.name == 'darwin+x86-64' || matrix.platform.name == 'darwin+aarch64'
|
||||
if: startsWith(matrix.platform.name, 'darwin')
|
||||
# FROM: https://tauri.app/v1/guides/distribution/sign-macos
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
|
@ -164,11 +164,11 @@ jobs:
|
|||
|
||||
- name: build tauri for Linux
|
||||
# uses: teaxyz/setup@v0
|
||||
if: matrix.platform.name == 'linux+x86-64' || matrix.platform.name == 'linux+aarch64'
|
||||
if: startsWith(matrix.platform.name, 'linux')
|
||||
# TODO: https://tauri.app/v1/guides/distribution/sign-linux
|
||||
run: |
|
||||
sh <(curl https://tea.xyz) .
|
||||
sh <(curl https://tea.xyz) -x build
|
||||
sudo apt-get install -y libgtk-3-dev webkit2gtk-4.0 libappindicator3-dev librsvg2-dev patchelf pkg-config
|
||||
sh <(curl https://tea.xyz) build
|
||||
|
||||
- name: build platform output
|
||||
id: build_platform
|
||||
|
@ -212,7 +212,7 @@ jobs:
|
|||
aws s3 cp ./modules/gui/src-tauri/target/release/bundle/macos/tea.zip "s3://preview.gui.tea.xyz/$prefix/tea_$platform.zip"
|
||||
|
||||
- name: comment install for Linux
|
||||
if: matrix.platform.name == 'linux+x86-64'
|
||||
if: startsWith(matrix.platform.name, 'linux')
|
||||
uses: mshick/add-pr-comment@v2
|
||||
with:
|
||||
message-id: ${{ matrix.platform.id }}-comment
|
||||
|
@ -226,7 +226,7 @@ jobs:
|
|||
copy-paste into a browser to download
|
||||
|
||||
- name: comment install for MacOS
|
||||
if: matrix.platform.name == 'darwin+x86-64' || matrix.platform.name == 'darwin+aarch64'
|
||||
if: startsWith(matrix.platform.name, 'darwin')
|
||||
uses: mshick/add-pr-comment@v2
|
||||
with:
|
||||
message-id: ${{ matrix.platform.id }}-comment
|
||||
|
|
|
@ -13,9 +13,6 @@ For better documentation checkout this [notion](https://www.notion.so/teaxyz/tea
|
|||
| nodejs.org | >=16 |
|
||||
| pnpm.io | >=7.18.2 |
|
||||
| rust-lang.org | >=1.62 |
|
||||
| nixos.org/patchelf | >=0.17 |
|
||||
| freedesktop.org/pkg-config | >=0.29 |
|
||||
| gnome.org/librsvg | >=2.55 |
|
||||
|
||||
# Getting Started
|
||||
```sh
|
||||
|
|
Loading…
Reference in a new issue