@pnpm.e2e/testing-provenance2 0.0.1

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.
@@ -0,0 +1,29 @@
1
+ name: Release
2
+
3
+ on:
4
+ push:
5
+ tags:
6
+ - "v*.*.*"
7
+
8
+ jobs:
9
+ release:
10
+ permissions:
11
+ id-token: write # Required for OIDC
12
+ contents: write # for softprops/action-gh-release to create GitHub release
13
+ runs-on: ubuntu-latest
14
+ environment: release
15
+ steps:
16
+ - name: Checkout
17
+ uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
18
+ - name: Install pnpm
19
+ uses: pnpm/action-setup@41ff72655975bd51cab0327fa583b6e92b6d3061 # v4.2.0
20
+ with:
21
+ standalone: true
22
+ - name: npm install
23
+ run: pnpm install --global npm@11.6.2
24
+ - name: pnpm install
25
+ run: pnpm install
26
+ - name: Publish Packages
27
+ continue-on-error: true
28
+ run: pnpm publish --no-git-checks
29
+
package/README.md ADDED
@@ -0,0 +1 @@
1
+ # testing-provenance2
package/package.json ADDED
@@ -0,0 +1,16 @@
1
+ {
2
+ "name": "@pnpm.e2e/testing-provenance2",
3
+ "version": "0.0.1",
4
+ "description": "",
5
+ "main": "index.js",
6
+ "keywords": [],
7
+ "author": "",
8
+ "license": "ISC",
9
+ "repository": {
10
+ "type": "git",
11
+ "url": "git+https://github.com/pnpm-e2e/testing-provenance2.git"
12
+ },
13
+ "scripts": {
14
+ "test": "echo \"Error: no test specified\" && exit 1"
15
+ }
16
+ }