sqs-consumer 8.1.1 → 8.1.3

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.
@@ -5,12 +5,12 @@ on:
5
5
  workflow_dispatch:
6
6
  inputs:
7
7
  releaseType:
8
- description: stable or canary?
8
+ description: latest or canary?
9
9
  required: true
10
10
  type: choice
11
11
  options:
12
12
  - canary
13
- - stable
13
+ - latest
14
14
  jobs:
15
15
  build:
16
16
  runs-on: ubuntu-latest
@@ -25,6 +25,6 @@ jobs:
25
25
  cache: 'npm'
26
26
  registry-url: 'https://registry.npmjs.org'
27
27
  - run: npm ci
28
- - run: npm publish --provenance --access public --tag ${{ github.event.inputs.releaseType || 'canary' }}
28
+ - run: npm publish --provenance --access public --tag ${{ github.event.inputs.releaseType || 'latest' }}
29
29
  env:
30
30
  NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sqs-consumer",
3
- "version": "8.1.1",
3
+ "version": "8.1.3",
4
4
  "description": "Build SQS-based Node applications without the boilerplate",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",