diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 4a5b2ec..7b30c0f 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -10,11 +10,10 @@ jobs: permissions: {} steps: - name: Check ref - if: | - !startsWith(github.ref, 'refs/tags/') - run: | - echo "This action should only be run on tag" - exit 1 + if: !startsWith(github.ref, 'refs/tags/') + run: | + echo "This action should only be run on tag" + exit 1 release: needs: [check]