Skip to content

Commit

Permalink
Fix nits in github action yaml files
Browse files Browse the repository at this point in the history
Summary:
There are some nits in the file that block us from running the github action.
Fixing nits using GithubAction extention for VS Code locally.

Reviewed By: matt-fff

Differential Revision: D41853166

fbshipit-source-id: 485982e05fccdd8aa1960124f751cd22b670e8a2
  • Loading branch information
kiminoue7 authored and facebook-github-bot committed Dec 8, 2022
1 parent 633c814 commit 93c8e59
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ jobs:
run: |
python -m build --sdist --wheel --outdir dist/ pyvrs
ls -l dist
- name: Store ${{ matrix.manylinux-python-target }} binary wheel
- name: Store the binary wheel
uses: actions/upload-artifact@v2
with:
name: python-package-distributions
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ jobs:
build-bin-macos:
if: github.repository == 'facebookresearch/vrs'
needs:
- update-version:
- update-version
runs-on: ${{ matrix.os }}
strategy:
matrix:
Expand Down Expand Up @@ -124,7 +124,7 @@ jobs:
build-bin-linux:
if: github.repository == 'facebookresearch/vrs'
needs:
- update-version:
- update-version
runs-on: ${{ matrix.os }}
strategy:
matrix:
Expand Down Expand Up @@ -161,7 +161,7 @@ jobs:
run: |
python -m build --sdist --wheel --outdir dist/ pyvrs
ls -l dist
- name: Store ${{ matrix.manylinux-python-target }} binary wheel
- name: Store the binary wheel
uses: actions/upload-artifact@v2
with:
name: python-package-distributions
Expand Down

0 comments on commit 93c8e59

Please sign in to comment.