Skip to content

Commit

Permalink
Merge pull request #1 from NREL/use_uo_files
Browse files Browse the repository at this point in the history
Use UO Files
  • Loading branch information
mitchute authored Jul 19, 2023
2 parents a047bf7 + b5691f1 commit 9dea558
Show file tree
Hide file tree
Showing 30 changed files with 51,794 additions and 9,021 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: PyPIRelease

on:
push:
tags:
- '*'

jobs:
release:
runs-on: ubuntu-20.04

steps:
- uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8 # v2

- name: Set up Python
uses: actions/setup-python@b55428b1882923874294fa556849718a1d7f2ca5 # v4.2.0
with:
python-version: 3.8

- name: Install Pip Dependencies
shell: bash
run: pip install wheel

- name: Build the Wheel
shell: bash
run: rm -rf dist/ build/ && python3 setup.py bdist_wheel sdist

- name: Deploy on PyPi
uses: pypa/gh-action-pypi-publish@release/v1
with:
user: __token__
password: ${{ secrets.PIPYPW }}
repository_url: https://upload.pypi.org/legacy/
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -130,3 +130,4 @@ dmypy.json

.idea/
.vscode/
thermalnetwork/tests/test_outputs
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
# ThermalNetwork

A library for sizing multiple ground heat exchangers distributed around a single-pipe thermal network.
Loading

0 comments on commit 9dea558

Please sign in to comment.