Skip to content

Commit

Permalink
feat: initial release
Browse files Browse the repository at this point in the history
  • Loading branch information
Rob Patro committed Sep 30, 2023
1 parent a1e2d3e commit 376d3e6
Show file tree
Hide file tree
Showing 2 changed files with 45 additions and 1 deletion.
37 changes: 37 additions & 0 deletions .github/workflows/release-please.yml
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 }}
9 changes: 8 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down

0 comments on commit 376d3e6

Please sign in to comment.