We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bbe057d commit 4fbd774Copy full SHA for 4fbd774
.github/workflows/release.yml
@@ -0,0 +1,20 @@
1
+name: Create Release
2
+on:
3
+ release:
4
+ types: [prereleased]
5
+jobs:
6
+ build:
7
+ name: Create Release
8
+ runs-on: ubuntu-latest
9
+ steps:
10
+ - uses: actions/checkout@v2
11
+ # Setup .npmrc file to publish to npm
12
+ - uses: actions/setup-node@v1
13
+ with:
14
+ node-version: '14.0'
15
+ registry-url: 'https://registry.npmjs.org'
16
+ - run: npm install
17
+ # Publish to npm
18
+ - run: npm publish
19
+ env:
20
+ NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
package.json
@@ -1,6 +1,6 @@
{
"name": "splunk-logging",
- "version": "0.10.1",
+ "version": "0.0.1-beta",
"description": "Splunk HTTP Event Collector logging interface",
"homepage": "http://dev.splunk.com",
"main": "index.js",
0 commit comments