From 93c8e59d0786320a0d8836c4fb57400ec0aca986 Mon Sep 17 00:00:00 2001 From: Yuta Inoue Date: Thu, 8 Dec 2022 14:08:12 -0800 Subject: [PATCH] Fix nits in github action yaml files 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 --- .github/workflows/nightly.yml | 2 +- .github/workflows/release.yml | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml index 94c8da60..d6efbe62 100644 --- a/.github/workflows/nightly.yml +++ b/.github/workflows/nightly.yml @@ -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 diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 7b9bb06c..ac9945f8 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -81,7 +81,7 @@ jobs: build-bin-macos: if: github.repository == 'facebookresearch/vrs' needs: - - update-version: + - update-version runs-on: ${{ matrix.os }} strategy: matrix: @@ -124,7 +124,7 @@ jobs: build-bin-linux: if: github.repository == 'facebookresearch/vrs' needs: - - update-version: + - update-version runs-on: ${{ matrix.os }} strategy: matrix: @@ -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