Skip to content

Commit

Permalink
Fix GHAs Workflows
Browse files Browse the repository at this point in the history
The `rapids-env-update` command needs a `GH_TOKEN` environment for CI now due to the changes below:

- rapidsai/gha-tools#53

Similar to: rapidsai/shared-workflows#87
  • Loading branch information
ajschmidt8 committed May 11, 2023
1 parent 1733b51 commit 2844d90
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,8 @@ jobs:
fetch-depth: 0
- name: Build wheel
run: ci/build_python_pypi.sh
env:
GH_TOKEN: ${{ github.token }}
- name: Publish distribution 📦 to PyPI
if: inputs.build_type == 'nightly'
uses: pypa/gh-action-pypi-publish@release/v1
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -58,3 +58,5 @@ jobs:
fetch-depth: 0
- name: Build wheel
run: ci/build_python_pypi.sh
env:
GH_TOKEN: ${{ github.token }}

0 comments on commit 2844d90

Please sign in to comment.