diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 28a98bb..29f97a3 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -10,6 +10,10 @@ on: required: false default: '.' type: string + dry-run: + required: false + default: false + type: boolean jobs: dart-scan: @@ -55,5 +59,6 @@ jobs: env: GH_TOKEN: ${{ steps.generate_token.outputs.token }} - name: Push Tags + if: ${{ !inputs.dry-run }} run: git push --follow-tags \ No newline at end of file