Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update bump #9

Merged
merged 9 commits into from
Jul 10, 2024
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
9 changes: 4 additions & 5 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: 'publish'
name: "publish"
on:
push:
branches:
Expand All @@ -15,7 +15,7 @@ jobs:

runs-on: ${{ matrix.platform }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: install Rust stable
uses: dtolnay/rust-toolchain@stable
Expand All @@ -40,8 +40,7 @@ jobs:
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'
releaseName: "BioinformaticsToolkit v__VERSION__"
releaseBody: "Release of the Bioinformaticstoolkit using Github Actions"
releaseDraft: true
prerelease: false

33 changes: 8 additions & 25 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: 'test-on-pr'
name: "test-on-pr"
on: [pull_request]

jobs:
Expand All @@ -10,34 +10,17 @@ jobs:

runs-on: ${{ matrix.platform }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: setup node
uses: actions/setup-node@v4
with:
node-version: 20

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

- name: install dependencies (ubuntu only)
if: matrix.platform == 'ubuntu-22.04'
run: |
curl -fsSL https://bun.sh/install | bash
bun install

- name: install dependencies (macos only)
if: matrix.platform == 'macos-latest'
run: |
brew install oven-sh/bun/bun
bun install
- name: install Bun
uses: oven-sh/setup-bun@v2

- name: install dependencies (windows only)
if: matrix.platform == 'windows-latest'
run: |
powershell -c "irm bun.sh/install.ps1|iex"
bun install
- name: install dependencies
run: bun install

- uses: tauri-apps/tauri-action@v0
- uses: tauri-apps/tauri-action@v0.5.9
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,15 @@
},
"dependencies": {
"@observablehq/framework": "latest",
"@tauri-apps/api": "^2.0.0-beta.6",
"@tauri-apps/api": "^2.0.0-beta.13",
"@tauri-apps/plugin-dialog": "^2.0.0-beta.2",
"@tauri-apps/plugin-shell": "^2.0.0-beta.2",
"d3-dsv": "^3.0.1",
"d3-time-format": "^4.1.0",
"gosling.js": "^0.16.0",
"gosling.js": "^0.17.0",
"higlass": "^1.13.4",
"ideogram": "^1.45.1",
"igv": "2.15.5",
"igv": "2.15.12",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
Expand Down
Loading
Loading