@natlibfi/ekirjasto-circulation-admin 0.7.3-post.14 → 0.7.3-post.26
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +10 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -97,7 +97,16 @@ The Circulation Manager administrative interface relies on the [OPDS Web Catalog
|
|
|
97
97
|
|
|
98
98
|
## Publishing a New Release
|
|
99
99
|
|
|
100
|
-
This package is [published to NPM](https://www.npmjs.com/package/@natlibfi/ekirjasto-circulation-admin)
|
|
100
|
+
This package is [published to NPM](https://www.npmjs.com/package/@natlibfi/ekirjasto-circulation-admin) via GitHub Actions using npm OIDC Trusted Publishing.
|
|
101
|
+
|
|
102
|
+
Publishing behavior:
|
|
103
|
+
|
|
104
|
+
- Pushes to `main` publish a prerelease build to npm with the dist-tag `next` (version computed from git using Dunamai).
|
|
105
|
+
- Publishing a GitHub Release publishes the release version to npm with the dist-tag `latest` (version taken from the release tag).
|
|
106
|
+
|
|
107
|
+
The single publishing entrypoint workflow is `.github/workflows/npm-publish.yml`.
|
|
108
|
+
|
|
109
|
+
To publish a new stable version, create a new GitHub Release with a tag following [Semantic Versioning](https://semver.org/) (major.minor.patch). The build/test and `npm publish` steps run in GitHub Actions.
|
|
101
110
|
|
|
102
111
|
## Accessibility
|
|
103
112
|
|
package/package.json
CHANGED