This repository has been archived by the owner on Mar 29, 2024. It is now read-only.
chore(deps): update dependency rollup to v4 #1483
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
on: push | |
name: PublishPyWheel | |
jobs: | |
publish-py-wheel: | |
name: PublishPyWheel | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@master | |
- name: Bazel build | |
uses: docker://l.gcr.io/google/bazel:1.2.1@sha256:6428db119dc31925cbc73b45b182ab8ce7d88ed821f5f2b4948363b79e17513c | |
with: | |
entrypoint: /bin/bash | |
args: -c "bazel build //python:wheel && cp -r bazel-bin/ bazel-bin-copy/" | |
# Making a copy of bazel-bin/ because it is a symlink within | |
# the docker container. And the host machine doesn't have | |
# access to the symlink's target directory. | |
- run: cd bazel-bin-copy/ && ls -la | |
- name: Publish artifact | |
uses: actions/upload-artifact@master | |
with: | |
name: pyhokchew-0.1.1.dev-py3-none-any.whl | |
path: bazel-bin-copy/python |