Merge branch 'main' of github.com:ukaea/powerbalance #11
Workflow file for this run
This file contains hidden or 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
name: Deploy Power Balance Models | |
on: | |
push: | |
tags: | |
- "v*" | |
permissions: | |
contents: write | |
jobs: | |
deploy_ubuntu: | |
name: Deploy Latest Ubuntu Release | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Get Previous tag | |
id: previoustag | |
uses: "WyriHaximus/github-action-get-previous-tag@v1" | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.13' | |
- name: Install UV | |
run: python -m pip install uv | |
- name: Check Citation File | |
run: | | |
python3 -m pip install -r <(curl -s https://raw.githubusercontent.com/citation-file-format/citation-file-format/main/requirements.txt) | |
python3 <(curl -s https://raw.githubusercontent.com/citation-file-format/citation-file-format/main/examples/validator.py) \ | |
-d ${GITHUB_WORKSPACE}/CITATION.cff \ | |
-s <(curl -s https://raw.githubusercontent.com/citation-file-format/citation-file-format/main/schema.json) | |
- name: Install Module | |
run: uv venv | |
- name: Build Module | |
run: uv build | |
- name: Create Release | |
uses: softprops/action-gh-release@v2 | |
with: | |
token: "${{ secrets.GITHUB_TOKEN }}" | |
prerelease: false | |
name: Power Balance Models Release ${{ steps.previoustag.outputs.tag }} | |
tag_name: ${{ steps.previoustag.outputs.tag }} | |
files: | | |
dist/*.whl | |
dist/*.gz |