We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 69f78e9 + c284b8f commit 4b6f083Copy full SHA for 4b6f083
.github/workflows/release.yml
@@ -5,15 +5,15 @@ on:
5
tags:
6
- '*'
7
release:
8
- types: [deleted]
+ types: [created, deleted]
9
10
concurrency:
11
group: ${{ github.workflow }}-${{ github.ref }}
12
cancel-in-progress: true
13
14
jobs:
15
publish:
16
- if: ${{ github.event_name == 'push' && !startsWith(github.ref, 'refs/tags/v') }}
+ if: ${{ github.event.action != 'deleted' }}
17
name: Publish to ${{ matrix.registry }}
18
runs-on: ubuntu-latest
19
env:
0 commit comments