We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 91b5b6a commit ab8b724Copy full SHA for ab8b724
.github/workflows/release.yaml
@@ -38,7 +38,10 @@ jobs:
38
name: extension-${{ github.sha }}
39
path: workspace/extension/build/svelte-devtools.zip
40
41
- - if: github.ref == 'refs/heads/master'
+ - if: |
42
+ github.repository == 'sveltejs/svelte-devtools' &&
43
+ github.event_name == 'push' && github.ref == 'refs/heads/master' &&
44
+ startsWith(github.event.head_commit.message, '~ v${{ needs.manifest.outputs.version }}')
45
env:
46
GH_TOKEN: ${{ github.token }}
47
run: | # https://cli.github.com/manual/gh_release_create
0 commit comments