Skip to content

Commit

Permalink
fix a bug
Browse files Browse the repository at this point in the history
  • Loading branch information
dhuangnm authored and dhuangnm committed Sep 13, 2024
1 parent 8183caf commit e456600
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,8 @@ jobs:

outputs:
run_id: ${{ github.run_id }}
whl: ${{ steps.build.outputs.whl }}
tarfile: ${{ steps.build.outputs.tarfile }}
whl: ${{ steps.build.outputs.whlname }}
tarfile: ${{ steps.build.outputs.tarname }}
testmo_run_id: ${{ steps.create_testmo_run.outputs.id }}

steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ jobs:

- name: dependency
run: |
if [[ ${{ inputs.whl }} =~ nightly ]]; then
if [[ "${{ inputs.whl }}" =~ nightly ]]; then
echo 'EXTRA="[dev,accelerate]"' >> $GITHUB_ENV
else
echo 'EXTRA="[dev]"' >> $GITHUB_ENV
Expand Down

0 comments on commit e456600

Please sign in to comment.