Skip to content

Commit

Permalink
update workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
thewh1teagle committed Feb 4, 2024
1 parent 5daa29d commit 88f753f
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 18 deletions.
19 changes: 10 additions & 9 deletions .github/workflows/deploy_linux.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -53,13 +53,14 @@ jobs:
run: npm install # Change this to npm, yarn or pnpm.
working-directory: ./desktop

- name: Install tauri-cli
run: cargo install tauri-cli

- name: Install build dependencies
run: pip3 install -r scripts/release/requirements.txt

- name: Build and upload
run: python3 scripts/release/release.py
# Build and upload
- name: Build and Upload
uses: tauri-apps/tauri-action@v0
env:
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tagName: v__VERSION__ # the action automatically replaces \_\_VERSION\_\_ with the app version
releaseName: "v__VERSION__"
releaseBody: "See the assets to download this version and install."
releaseDraft: true
prerelease: false
21 changes: 13 additions & 8 deletions .github/workflows/deploy_macos.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -63,13 +63,18 @@ jobs:
run: npm install # Change this to npm, yarn or pnpm.
working-directory: ./desktop

- name: Install tauri-cli
run: cargo install tauri-cli
# Setup OpenBlas and FFMPEG
- name: Setup FFMPEG and OpenBlas
run: ./scripts/pre_build.sh

- name: Install build dependencies
run: pip3 install -r scripts/release/requirements.txt

- name: Build and upload
run: python3 scripts/release/release.py
# Build and upload
- name: Build and Upload
uses: tauri-apps/tauri-action@v0
env:
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tagName: v__VERSION__ # the action automatically replaces \_\_VERSION\_\_ with the app version
releaseName: "v__VERSION__"
releaseBody: "See the assets to download this version and install."
releaseDraft: true
prerelease: false
5 changes: 4 additions & 1 deletion .github/workflows/deploy_universal_mac.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -61,10 +61,13 @@ jobs:
run: npm install # Change this to npm, yarn or pnpm.
working-directory: ./desktop

# Setup OpenBlas and FFMPEG
- name: Setup FFMPEG and OpenBlas
run: ./scripts/pre_build.sh

- uses: tauri-apps/tauri-action@v0
# Build and upload
- name: Build and Upload
uses: tauri-apps/tauri-action@v0
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
Expand Down

0 comments on commit 88f753f

Please sign in to comment.