Skip to content

Commit

Permalink
Merge pull request #7 from ralphschuler/devel
Browse files Browse the repository at this point in the history
ci: fix
  • Loading branch information
ralphschuler authored Nov 26, 2023
2 parents 7fa529a + 4872eb6 commit c284b8f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,15 @@ on:
tags:
- '*'
release:
types: [deleted]
types: [created, deleted]

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

jobs:
publish:
if: ${{ github.event_name == 'push' && !startsWith(github.ref, 'refs/tags/v') }}
if: ${{ github.event.action != 'deleted' }}
name: Publish to ${{ matrix.registry }}
runs-on: ubuntu-latest
env:
Expand Down

0 comments on commit c284b8f

Please sign in to comment.