Skip to content

Commit

Permalink
ci: temparary allow passing the version manually
Browse files Browse the repository at this point in the history
  • Loading branch information
bardisg committed Dec 14, 2022
1 parent 82550c2 commit 0c423af
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/publish-new-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@ name: Publish new github release

on:
workflow_dispatch:
inputs:
version:
required: true
pull_request:
branches:
- main
Expand All @@ -21,7 +24,7 @@ jobs:
VERSION=${BRANCH_NAME#hotfix-}
VERSION=${VERSION#release/}
echo "release_version=$VERSION" >> $GITHUB_OUTPUT
echo "release_version=${{ github.event.inputs.version }}" >> $GITHUB_OUTPUT
- name: Checkout
uses: actions/checkout@v3
Expand Down

0 comments on commit 0c423af

Please sign in to comment.