Skip to content

Commit

Permalink
fix : publish_conda.yaml added #177
Browse files Browse the repository at this point in the history
  • Loading branch information
sepandhaghighi committed Aug 8, 2022
1 parent 88aff6e commit 0f3bb3f
Show file tree
Hide file tree
Showing 2 changed files with 54 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/publish_conda.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: publish_conda

on:
push:
# Sequence of patterns matched against refs/tags
tags:
- '*' # Push events to matching v*, i.e. v1.0, v20.15.10

jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: publish-to-conda
uses: sepandhaghighi/conda-package-publish-action@v1.2
with:
subDir: 'otherfile'
AnacondaToken: ${{ secrets.ANACONDA_TOKEN }}
36 changes: 36 additions & 0 deletions otherfile/meta.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
{% set name = "opem" %}
{% set version = "1.3" %}

package:
name: {{ name|lower }}
version: {{ version }}
source:
git_url: https://github.com/ECSIM/opem
git_rev: v{{ version }}
build:
noarch: python
number: 0
script: {{ PYTHON }} -m pip install . -vv
requirements:
host:
- pip
- setuptools
- python >=3.5
run:
- art >0.7
- requests >=2.20.0
- python >=3.5
about:
home: https://github.com/ECSIM/opem
license: MIT
license_family: MIT
summary: OPEM (Open Source PEM Fuel Cell Simulation Tool)
description: |
Modeling and simulation of proton-exchange membrane fuel cells (PEMFC) may work as a powerful tool in the research & development of renewable energy sources. The Open-Source PEMFC Simulation Tool (OPEM) is a modeling tool for evaluating the performance of proton exchange membrane fuel cells. This package is a combination of models (static/dynamic) that predict the optimum operating parameters of PEMFC. OPEM contained generic models that will accept as input, not only values of the operating variables such as anode and cathode feed gas, pressure and compositions, cell temperature and current density, but also cell parameters including the active area and membrane thickness. In addition, some of the different models of PEMFC that have been proposed in the OPEM, just focus on one particular FC stack, and some others take into account a part or all auxiliaries such as reformers. OPEM is a platform for collaborative development of PEMFC models.
Website: http://opem.ecsim.ir
Repo: https://github.com/ECSIM/opem
extra:
recipe-maintainers:
- ecsim

0 comments on commit 0f3bb3f

Please sign in to comment.