@releaseway/npm-actions-fixture 0.0.1-fixture.0
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 +22 -0
- package/index.js +1 -0
- package/package.json +18 -0
package/README.md
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
# @releaseway/npm-actions-fixture
|
|
2
|
+
|
|
3
|
+
Permanent integration fixture for releaseway/npm-actions.
|
|
4
|
+
|
|
5
|
+
This package exists only to exercise real npm registry publication behavior, including Trusted Publishing OIDC, exact-version reconciliation, staged publishing, and later native distribution scenarios.
|
|
6
|
+
|
|
7
|
+
It is not intended for application dependencies or production use.
|
|
8
|
+
|
|
9
|
+
Published versions use prerelease identifiers and the npm `fixture` dist-tag so they do not participate in a normal `latest` release line.
|
|
10
|
+
|
|
11
|
+
## Bootstrap
|
|
12
|
+
|
|
13
|
+
The first package version is published by the one-time `Bootstrap npm fixture` workflow using a short-lived granular npm token stored as `NPM_BOOTSTRAP_TOKEN`.
|
|
14
|
+
|
|
15
|
+
After the package exists, configure npm Trusted Publishing for:
|
|
16
|
+
|
|
17
|
+
- GitHub organization: `releaseway`
|
|
18
|
+
- Repository: `npm-actions-fixture`
|
|
19
|
+
- Workflow filename: `publish.yml`
|
|
20
|
+
- Allowed actions: direct publish and staged publish
|
|
21
|
+
|
|
22
|
+
The bootstrap token is not used by `publish.yml` and should be revoked after Trusted Publishing is configured.
|
package/index.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export const fixture = "@releaseway/npm-actions-fixture";
|
package/package.json
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@releaseway/npm-actions-fixture",
|
|
3
|
+
"version": "0.0.1-fixture.0",
|
|
4
|
+
"description": "Integration fixture for releaseway/npm-actions. Not for production use.",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"exports": "./index.js",
|
|
7
|
+
"files": [
|
|
8
|
+
"index.js"
|
|
9
|
+
],
|
|
10
|
+
"repository": {
|
|
11
|
+
"type": "git",
|
|
12
|
+
"url": "https://github.com/releaseway/npm-actions-fixture.git"
|
|
13
|
+
},
|
|
14
|
+
"publishConfig": {
|
|
15
|
+
"access": "public",
|
|
16
|
+
"tag": "fixture"
|
|
17
|
+
}
|
|
18
|
+
}
|