diff --git a/.github/workflows/pipeline.yml b/.github/workflows/pipeline.yml index a24534e..1f7932f 100644 --- a/.github/workflows/pipeline.yml +++ b/.github/workflows/pipeline.yml @@ -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