Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
usulpro committed May 29, 2024
1 parent 4380610 commit 3055fee
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/new-repo.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,11 @@ jobs:
uses: actions/checkout@v3
- id: get_step
run: |
echo "current_step=$(cat ./.github/script/STEP)" >> $GITHUB_OUTPUT
if [ -f ./.github/script/STEP ]; then
echo "current_step=$(cat ./.github/script/STEP)" >> $GITHUB_OUTPUT
else
echo "current_step=0" >> $GITHUB_OUTPUT
fi
outputs:
current_step: ${{ steps.get_step.outputs.current_step }}

Expand Down

0 comments on commit 3055fee

Please sign in to comment.