Skip to content

Commit 26f7f17

Browse files
author
fern
committed
SDK Generation
1 parent 2394016 commit 26f7f17

File tree

18 files changed

+487
-1795
lines changed

18 files changed

+487
-1795
lines changed

.github/workflows/ci.yml

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
uses: actions/checkout@v4
1212

1313
- name: Set up node
14-
uses: actions/setup-node@v3
14+
uses: actions/setup-node@v4
1515

1616
- name: Install pnpm
1717
uses: pnpm/action-setup@v4
@@ -30,7 +30,7 @@ jobs:
3030
uses: actions/checkout@v4
3131

3232
- name: Set up node
33-
uses: actions/setup-node@v3
33+
uses: actions/setup-node@v4
3434

3535
- name: Install pnpm
3636
uses: pnpm/action-setup@v4
@@ -50,7 +50,7 @@ jobs:
5050
uses: actions/checkout@v4
5151

5252
- name: Set up node
53-
uses: actions/setup-node@v3
53+
uses: actions/setup-node@v4
5454

5555
- name: Install pnpm
5656
uses: pnpm/action-setup@v4
@@ -64,12 +64,15 @@ jobs:
6464
- name: Publish to npm
6565
run: |
6666
npm config set //registry.npmjs.org/:_authToken ${NPM_TOKEN}
67+
publish() { # use latest npm to ensure OIDC support
68+
npx -y npm@latest publish "$@"
69+
}
6770
if [[ ${GITHUB_REF} == *alpha* ]]; then
68-
npm publish --access public --tag alpha
71+
publish --access public --tag alpha
6972
elif [[ ${GITHUB_REF} == *beta* ]]; then
70-
npm publish --access public --tag beta
73+
publish --access public --tag beta
7174
else
72-
npm publish --access public
75+
publish --access public
7376
fi
7477
env:
7578
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}

.npmignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ tests
44
.gitignore
55
.github
66
.fernignore
7+
.prettierrc.yml
78
biome.json
89
tsconfig.json
910
yarn.lock

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,4 +186,4 @@ of any court action, you agree to submit to the exclusive jurisdiction of the co
186186
Notwithstanding this, you agree that Anduril shall still be allowed to apply for injunctive remedies (or an equivalent type of urgent legal
187187
relief) in any jurisdiction.
188188

189-
**April 14, 2025**
189+
**April 14, 2025**

0 commit comments

Comments
 (0)