Skip to content

Commit

Permalink
ci: fix path [skip ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
peaceiris committed Sep 17, 2020
1 parent de19d8c commit 9d00fae
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/suggest-related-links.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,10 @@ jobs:
if: github.event_name == 'issues'
run: |
cd ~/actions-suggest-related-links/models/fasttext
cp /tmp/actions-suggest-related-links/training-data.json .
ls -la /tmp/actions-suggest-related-links || true
ls -la ${GITHUB_WORKSPACE}
ls -la ${GITHUB_WORKSPACE}/actions-suggest-related-links
cp ${GITHUB_WORKSPACE}/actions-suggest-related-links/training-data.json .
echo '${{ github.event.issue.title }} ${{ github.event.issue.body }}' > input.txt
python3 train.py -d training-data.json -test input.txt
Expand Down

0 comments on commit 9d00fae

Please sign in to comment.