Skip to content

Commit

Permalink
Fix shell script
Browse files Browse the repository at this point in the history
  • Loading branch information
Peter Evans committed May 1, 2020
1 parent e14d778 commit e200e28
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,10 @@ jobs:
- id: vars
run: |
if [[ "${{ github.event_name }}" == "pull_request" ]]; then \
echo "::set-output name=issue-number::${{ github.event.number }}" \
echo "::set-output name=issue-number::${{ github.event.number }}"; \
else \
echo "::set-output name=issue-number::1"; fi
echo "::set-output name=issue-number::1"; \
fi
test:
needs: [build]
Expand Down

0 comments on commit e200e28

Please sign in to comment.