Fix for missing lookup table of wrf package #44
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: "PyPi Build and Release" | |
| on: | |
| push: | |
| tags: | |
| - "v*" | |
| jobs: | |
| deploy: | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-python@v5 | |
| - name: Install Dependencies | |
| run: | | |
| python -m pip install --upgrade pip | |
| pip install setuptools wheel twine setuptools_scm build pkginfo | |
| - name: Build Package | |
| run: | | |
| python -m build --sdist | |
| - name: Publish to PyPi | |
| uses: pypa/gh-action-pypi-publish@release/v1.12 | |
| with: | |
| password: ${{ secrets.PYPI_API_TOKEN }} | |
| packages_dir: dist/ |