Release pipeline #1
Workflow file for this run
This file contains 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: [pull_request] | |
jobs: | |
create-python-client-package: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.x' | |
- name: Install dependencies | |
run: pip install --upgrade pip && pip install build | |
- name: Build python package | |
run: python -m build | |
- name: generate hash | |
id: hash | |
run: cd dist && echo "hash=$(sha256sum * | base64 -w0)" >> $GITHUB_OUTPUT | |
- uses: actions/upload-artifact@a8a3f3ad30e3422c9c7b888a15615d19a852ae32 | |
with: | |
path: ./dist | |
# | |
# pypi-publish-common: | |
# name: Upload beaker-common release to PyPI | |
# runs-on: ubuntu-latest | |
# environment: production | |
# permissions: | |
# id-token: write | |
# steps: | |
# - | |
# - name: Publish package distributions to PyPI | |
# uses: pypa/gh-action-pypi-publish@release/v1 | |
# with: | |
# packages-dir: artifacts/ | |
# | |
# pypi-publish-client: | |
# name: Upload beaker-client release to PyPI | |
# runs-on: ubuntu-latest | |
# environment: production | |
# permissions: | |
# id-token: write | |
# steps: | |
# - | |
# - name: Publish package distributions to PyPI | |
# uses: pypa/gh-action-pypi-publish@release/v1 | |
# with: | |
# packages-dir: artifacts/ |