@automateinc/fleet-types 1.0.60-dev.9893206 → 1.0.60-dev.e967155
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,6 +5,10 @@ on:
|
|
|
5
5
|
branches:
|
|
6
6
|
- "**" # all branches
|
|
7
7
|
|
|
8
|
+
permissions:
|
|
9
|
+
id-token: write # Required for OIDC
|
|
10
|
+
contents: read
|
|
11
|
+
|
|
8
12
|
jobs:
|
|
9
13
|
publish:
|
|
10
14
|
runs-on: ubuntu-latest
|
|
@@ -48,8 +52,6 @@ jobs:
|
|
|
48
52
|
- name: Publish to npm
|
|
49
53
|
run: npm install -g npm@latest
|
|
50
54
|
- run: npm publish --provenance --access public --tag $( [[ "${{ github.ref_name }}" == "main" ]] && echo "latest" || echo "dev" )
|
|
51
|
-
env:
|
|
52
|
-
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
|
|
53
55
|
|
|
54
56
|
- name: Output Published Version
|
|
55
57
|
run: 'echo "📦 Published version: ${{ steps.bump.outputs.version }}"'
|
package/package.json
CHANGED