Skip to content

Commit 1220839

Browse files
committed
added anaconda workflow and readme updates
1 parent 10f41fc commit 1220839

File tree

3 files changed

+29
-3
lines changed

3 files changed

+29
-3
lines changed
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: publish_conda
2+
3+
on:
4+
release:
5+
types: [published]
6+
7+
jobs:
8+
publish:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- uses: actions/checkout@v4
12+
with:
13+
fetch-depth: 0
14+
- name: publish-to-conda
15+
uses: TomographicImaging/conda-package-publish-action@v2
16+
with:
17+
subDir: "recipes/conda"
18+
channels: "{-c swoboj}"
19+
publish: true
20+
AnacondaToken: ${{ secrets.ANACONDA_TOKEN }}

README.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,9 @@
11
# sigprocpython
2+
3+
[![GitHub version](https://badge.fury.io/gh/MIT-Adaptive-Radio-Science%2Fsigprocpython.svg)](https://badge.fury.io/gh/MIT-Adaptive-Radio-Science%2Fsigprocpython)
4+
[![Coverage Status](https://coveralls.io/repos/MIT-Adaptive-Radio-Science/sigprocpython/badge.svg)](https://coveralls.io/r/MIT-Adaptive-Radio-Science/sigprocpython)
5+
[![Conda image](https://anaconda.org/swoboj/mitarspysigproc/badges/version.svg)](https://anaconda.org/swoboj/mitarspysigproc)
6+
[![Documentation Status](https://readthedocs.org/projects/isrspectrum/badge/?version=latest)](https://mithaystackarspysigproc.readthedocs.io/en/latest/?badge=latest)
7+
28
Some signal processing tools in python that can be used as reference
9+
https://github.com/MIT-Adaptive-Radio-Science/sigprocpython

recipes/conda/meta.yaml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,9 @@ package:
33
version: v0.9.0
44

55
source:
6+
git_url: https://github.com/MIT-Adaptive-Radio-Science/sigprocpython
7+
git_rev: v0.9.0
68
path: ../..
7-
# git_url: https://github.com/MIT-Adaptive-Radio-Science/sigprocpython
8-
# git_rev: v0.9.0
9-
109
build:
1110
noarch: python
1211
number: 0

0 commit comments

Comments
 (0)