-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Rob Patro
committed
Sep 30, 2023
1 parent
a1e2d3e
commit 376d3e6
Showing
2 changed files
with
45 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
on: | ||
push: | ||
branches: | ||
- main | ||
|
||
name: release-please | ||
|
||
jobs: | ||
release-please: | ||
if: github.repository_owner == 'COMBINE-lab' | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- uses: GoogleCloudPlatform/release-please-action@v3 | ||
id: release_piscem_infer | ||
with: | ||
release-type: rust | ||
package-name: piscem-infer | ||
path: . | ||
|
||
- name: Install stable toolchain | ||
uses: dtolnay/rust-toolchain@stable | ||
if: ${{ steps.release_piscem_infer.outputs.release_created }} | ||
with: | ||
toolchain: stable | ||
override: true | ||
|
||
- uses: Swatinem/[email protected] | ||
if: ${{ steps.release_piscem_infer.outputs.release_created }} | ||
|
||
- name: Publish path-tools | ||
if: ${{ steps.release_piscem_infer.outputs.release_created }} | ||
uses: actions-rs/cargo@v1 | ||
with: | ||
command: publish | ||
args: --token ${{ secrets.CRATES_IO_TOKEN }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,14 @@ | |
name = "piscem-infer" | ||
version = "0.1.0" | ||
edition = "2021" | ||
|
||
license = "BSD-3-Clause-Attribution" | ||
keywords = ["science", "RNA-seq", "RAD-file"] | ||
categories = ["command-line-utilities", "science"] | ||
repository = "https://github.com/COMBINE-lab/piscem-infer/" | ||
homepage = "https://github.com/COMBINE-lab/piscem-infer/" | ||
readme = "README.md" | ||
description = "A flexible tool to perform target quantification from bulk-sequencing data" | ||
authors = ["Rob Patro", "Rob Patro <[email protected]>"] | ||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | ||
|
||
[dependencies] | ||
|