Skip to content

Commit b81fd40

Browse files
fixed alignment
1 parent 4d8e835 commit b81fd40

1 file changed

Lines changed: 3 additions & 4 deletions

File tree

.github/workflows/create-release.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,23 +30,22 @@ jobs:
3030
version_json_path: ${{ steps.locate_version.outputs.file }}
3131

3232
steps:
33-
# Checkout the branch we’re releasing *from*
34-
- name: ⬇️ Checkout target branch
33+
- name: Checkout target branch
3534
uses: actions/checkout@v4
3635
with:
3736
fetch-depth: 1
3837
ref: ${{ inputs.target_branch }}
3938

4039
# Optional sanity check (keeps the job obvious when the ref is wrong)
41-
- name: 🔍 Ensure target branch exists
40+
- name: Ensure target branch exists
4241
run: |
4342
if ! git rev-parse --verify --quiet "refs/heads/${{ inputs.target_branch }}"; then
4443
echo "::error::Ref '${{ inputs.target_branch }}' not found."
4544
exit 1
4645
fi
4746
4847
# Find version.json and emit its absolute path
49-
- name: 📄 Locate version.json
48+
- name: Locate version.json
5049
id: locate_version
5150
shell: bash
5251
run: |

0 commit comments

Comments
 (0)