We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7ec64b9 commit 242e442Copy full SHA for 242e442
1 file changed
shared-actions/create-release/action.yaml
@@ -16,14 +16,6 @@ inputs:
16
runs:
17
using: composite
18
steps:
19
- - name: Set up GitHub CLI
20
- if: steps.check_version.outputs.should_release == 'true'
21
- shell: bash
22
- run: |
23
- sudo apt update
24
- sudo apt install gh -y
25
- gh --version
26
-
27
- name: Read version from spec file
28
shell: bash
29
id: read_version
@@ -104,6 +96,14 @@ runs:
104
96
echo "should_release=true" >> $GITHUB_OUTPUT
105
97
echo "✅ Version validation passed: $PREVIOUS_TAG → $SPEC_VERSION"
106
98
99
+ - name: Set up GitHub CLI
100
+ if: steps.check_version.outputs.should_release == 'true'
101
+ shell: bash
102
+ run: |
103
+ sudo apt update
+ sudo apt install gh -y
+ gh --version
+
107
- name: Generate changelog
108
109
id: changelog
0 commit comments