Skip to content

Commit ead5e94

Browse files
authored
Release 1.5.3 (#687)
1 parent 581a632 commit ead5e94

File tree

4 files changed

+10
-17
lines changed

4 files changed

+10
-17
lines changed

.github/workflows/releasing.yml

Lines changed: 3 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ jobs:
1010
contents: write
1111
steps:
1212
- name: Check actor permission
13+
shell: bash
1314
run: |
1415
actor_permission=$(gh api \
1516
-H "Accept: application/vnd.github+json" \
@@ -25,8 +26,6 @@ jobs:
2526

2627
- name: Check out
2728
uses: actions/checkout@v4
28-
with:
29-
fetch-depth: 0
3029

3130
- name: Set up Node.js
3231
uses: actions/setup-node@v4
@@ -54,19 +53,9 @@ jobs:
5453
- name: Create GitHub release
5554
shell: bash
5655
run: |
57-
# Prepare for a new tag.
58-
git config user.name "${GITHUB_ACTOR}"
59-
git config user.email "${GITHUB_ACTOR_ID}+${GITHUB_ACTOR}@users.noreply.github.com"
60-
61-
# Create and push a Git tag.
6256
new_version=$(npm pkg get version | tr -d '"')
63-
new_tag="v${new_version}"
64-
git tag --annotate "${new_version}" -m "${new_version}" "${new_tag}"
65-
git push origin "${new_tag}"
66-
67-
# Create a GitHub release.
68-
gh release create "${new_tag}" --generate-notes
69-
release_url=$(gh release view "${latest_tag}" --json url --jq '.url')
57+
gh release create "v${new_version}" --generate-notes
58+
release_url=$(gh release view --json url --jq '.url')
7059
echo "::notice::${release_url} was created successfully. Adjust the release notes from the changelog to keep the consistency with other releases."
7160
env:
7261
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
44

55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7+
## [1.5.3](https://github.com/stylelint/vscode-stylelint/compare/v1.5.2...v1.5.3) (2025-06-05)
8+
9+
No actual changes.
10+
711
## [1.5.2](https://github.com/stylelint/vscode-stylelint/compare/v1.5.1...v1.5.2) (2025-06-05)
812

913
No actual changes.

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "vscode-stylelint",
3-
"version": "1.5.2",
3+
"version": "1.5.3",
44
"license": "MIT",
55
"description": "Official Stylelint extension for Visual Studio Code",
66
"main": "dist/index.js",

0 commit comments

Comments
 (0)