Skip to content

Commit

Permalink
ci: fix publishing action (#434)
Browse files Browse the repository at this point in the history
  • Loading branch information
stepansergeevitch committed Jul 11, 2024
1 parent 50925a8 commit c5af27b
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@ name: Release new version
on:
release:
types: [published]
workflow_dispatch:
inputs:
tag_name:
description: 'Tag name to publish'
required: true

jobs:
build:
Expand All @@ -15,7 +20,7 @@ jobs:
- name: Check out code
uses: actions/checkout@v3
with:
ref: ${{ github.event.release.tag_name }}
ref: ${{ github.event.release.tag_name || github.event.inputs.tag_name}}
- name: Download uber-jar
uses: actions/download-artifact@v3
with:
Expand Down

0 comments on commit c5af27b

Please sign in to comment.