Skip to content

Commit

Permalink
ci: fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
kilee1230 committed Dec 23, 2023
1 parent d0918e4 commit e6b90fd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ jobs:
run: |
if [ "${{ github.event_name }}" == 'push' ] && [ "${{ github.repository }}" != "${{ github.actor }}/express-api-template" ]; then
echo "Stopping job because it's a repository creation event."
echo "skip_ci=true" >> skip_ci
echo "skip_ci=true" >> $GITHUB_OUTPUT
else
echo "Proceeding with the job."
echo "skip_ci=false" >> skip_ci
echo "skip_ci=false" >> $GITHUB_OUTPUT
fi
- name: Checkout code and Use Node.js
Expand Down

0 comments on commit e6b90fd

Please sign in to comment.