chore: publish test in pull requests #2
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
ame: Publish pyQuil (test) | ||
on: | ||
push: | ||
branches: [1759-use-grpc-web] | ||
pull_request: | ||
branches: [1759-use-grpc-web] | ||
jobs: | ||
build-publish: | ||
name: Build and Publish | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/setup-python@v3 | ||
- uses: snok/install-poetry@v1 | ||
with: | ||
virtualenvs-in-project: true | ||
- name: Patch package metadata for grpc-web | ||
run: | | ||
pip install toml | ||
python scripts/ci_publish_grpc_web.py | ||
cargo update hyper-proxy | ||
- name: "Build" | ||
run: | | ||
poetry build --no-interaction | ||
- name: Upload wheels | ||
uses: actions/upload-artifact@v2 | ||
with: | ||
name: wheels |