Skip to content

Bio-informatics toolkit (#17) #18

Bio-informatics toolkit (#17)

Bio-informatics toolkit (#17) #18

Workflow file for this run

name: "publish"
on:
push:
branches:
- release
jobs:
publish-tauri:
permissions:
contents: write
strategy:
fail-fast: false
matrix:
platform: [macos-latest, ubuntu-22.04, windows-latest]
runs-on: ${{ matrix.platform }}
steps:
- uses: actions/checkout@v4
- name: install Rust stable
uses: dtolnay/rust-toolchain@stable
- name: setup node
uses: actions/setup-node@v4
with:
node-version: 20
- name: install dependencies (ubuntu only)
if: matrix.platform == 'ubuntu-22.04'
run: |
sudo apt-get update
sudo apt-get install -y libwebkit2gtk-4.1-dev libappindicator3-dev librsvg2-dev patchelf javascriptcoregtk-4.1
- name: install node
run: |
npm install
- 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: "BioinformaticsToolkit v__VERSION__"
releaseBody: "Release of the Bioinformaticstoolkit using Github Actions"
releaseDraft: true
prerelease: false