Skip to content

Commit

Permalink
test new publisher
Browse files Browse the repository at this point in the history
  • Loading branch information
dmolik committed Aug 27, 2024
1 parent 01a7238 commit c168a1e
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 1 deletion.
19 changes: 19 additions & 0 deletions .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: publish
on:
workflow_dispatch:
push:
branches:
- 'release-*'
- 'master'
- 'main'
tags:
- 'v*'
- '!pkg*'

jobs:
publish:
runs-on: ubuntu-latest
if: github.event_name == 'push' && github.ref_type == 'tag'
steps:
- run: |
gh release create ${{ github.ref }} --title "Release ${{ github.ref }}" --generate-notes
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: release
on:
release:
types:
- created
- created

jobs:
upload-assets:
Expand Down

0 comments on commit c168a1e

Please sign in to comment.