Skip to content
4 changes: 3 additions & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,4 +32,6 @@ jobs:
- name: Build
run: pnpm run build
- name: Publish to NPM (with provenance)
run: pnpm publish --no-git-checks --access public --tag ${{ github.event.release.prerelease && 'next' || 'latest' }}
run: |
npm i -g npm
pnpm publish --no-git-checks --tag ${{ github.event.release.prerelease && 'next' || 'latest' }}
6 changes: 3 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ All notable changes to this project will be documented in this file.

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).

## [2.8.0] - 2026-03-29
## [2.8.1] - 2026-03-29

### Added

Expand Down Expand Up @@ -402,8 +402,8 @@ Initial release of shareon
- Add Telegram button
- Add Twitter button

[unreleased]: https://github.com/kytta/shareon/compare/v2.8.0...main
[2.8.0]: https://github.com/kytta/shareon/compare/v2.7.0...v2.8.0
[unreleased]: https://github.com/kytta/shareon/compare/v2.8.1...main
[2.8.1]: https://github.com/kytta/shareon/compare/v2.7.0...v2.8.1
[2.7.0]: https://github.com/kytta/shareon/compare/v2.6.0...v2.7.0
[2.6.0]: https://github.com/kytta/shareon/compare/v2.5.0...v2.6.0
[2.5.0]: https://github.com/kytta/shareon/compare/v2.4.0...v2.5.0
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "shareon",
"version": "2.8.0",
"version": "2.8.1",
"description": "Lightweight, stylish and ethical share buttons for popular social networks",
"license": "MIT",
"homepage": "https://shareon.js.org",
Expand All @@ -11,7 +11,7 @@
],
"repository": {
"type": "git",
"url": "https://github.com/kytta/shareon.git"
"url": "git+https://github.com/kytta/shareon.git"
},
"bugs": {
"url": "https://github.com/kytta/shareon/issues"
Expand Down
Loading