@mafintosh/ci-testing 1.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,24 @@
1
+ name: Release to public npm
2
+
3
+ on:
4
+ workflow_dispatch:
5
+ inputs:
6
+ bump:
7
+ description: Version bump type
8
+ required: true
9
+ type: choice
10
+ options:
11
+ - patch
12
+ - minor
13
+ - major
14
+
15
+ permissions:
16
+ contents: write
17
+
18
+ jobs:
19
+ release:
20
+ uses: tetherto/actions/.github/workflows/public-publish.yml@main
21
+ with:
22
+ bump: ${{ inputs.bump }}
23
+ secrets:
24
+ NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
package/README.md ADDED
@@ -0,0 +1 @@
1
+ hello
package/package.json ADDED
@@ -0,0 +1,20 @@
1
+ {
2
+ "name": "@mafintosh/ci-testing",
3
+ "version": "1.0.1",
4
+ "description": "hello",
5
+ "homepage": "https://github.com/mafintosh/ci-testing#readme",
6
+ "bugs": {
7
+ "url": "https://github.com/mafintosh/ci-testing/issues"
8
+ },
9
+ "repository": {
10
+ "type": "git",
11
+ "url": "git+https://github.com/mafintosh/ci-testing.git"
12
+ },
13
+ "license": "ISC",
14
+ "author": "",
15
+ "type": "commonjs",
16
+ "main": "index.js",
17
+ "scripts": {
18
+ "test": "echo \"Error: no test specified\" && exit 1"
19
+ }
20
+ }