2.19.13 #281
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: Publish | |
| on: | |
| release: | |
| types: [published] | |
| jobs: | |
| test: | |
| uses: './.github/workflows/test.yml' | |
| test-stubs: | |
| uses: './.github/workflows/test-stubs.yml' | |
| deploy: | |
| needs: [test, test-stubs] | |
| runs-on: ubuntu-22.04 | |
| # Specifying a GitHub environment is optional, but strongly encouraged | |
| environment: pypi | |
| permissions: | |
| # IMPORTANT: this permission is mandatory for Trusted Publishing | |
| id-token: write | |
| steps: | |
| - uses: actions/checkout@ee0669bd1cc54295c223e0bb666b733df41de1c5 # v2.7.0 | |
| - name: Set up Python 3.x | |
| uses: actions/setup-python@152ba7c4dd6521b8e9c93f72d362ce03bf6c4f20 # v1.2.3 | |
| with: | |
| python-version: '3.x' | |
| - name: Install Python 3.x dependencies | |
| run: | | |
| python3 -m pip install --upgrade pip | |
| pip3 install --upgrade setuptools wheel twine pkginfo | |
| - name: Install metaflow | |
| run: pip install . | |
| - name: Generate Stubs | |
| run: cd ./stubs && rm -rf metaflow-stubs/ && python -c "from metaflow.cmd.develop.stub_generator import StubGenerator; StubGenerator('./metaflow-stubs').write_out()" && cd - | |
| - name: Build metaflow package | |
| run: | | |
| python3 setup.py sdist bdist_wheel --universal | |
| - name: Build metaflow-stubs package | |
| run: | | |
| cd ./stubs && python3 setup.py sdist bdist_wheel --universal && cd - | |
| - name: Publish metaflow-stubs package | |
| uses: pypa/gh-action-pypi-publish@ed0c53931b1dc9bd32cbe73a98c7f6766f8a527e #v1.13.0 | |
| with: | |
| packages-dir: ./stubs/dist | |
| - name: Publish metaflow package | |
| uses: pypa/gh-action-pypi-publish@ed0c53931b1dc9bd32cbe73a98c7f6766f8a527e #v1.13.0 |