Skip to content

Commit 5be32dc

Browse files
release: 0.7.6 (#79)
* Add registry URL to npm publish workflow * Add provenance flag to yarn publish command * release: 0.7.6 --------- Co-authored-by: Milan Pavlik <pavlik.mil@gmail.com> Co-authored-by: stainless-app[bot] <142633134+stainless-app[bot]@users.noreply.github.com>
1 parent e7c65a7 commit 5be32dc

File tree

6 files changed

+9
-4
lines changed

6 files changed

+9
-4
lines changed

.github/workflows/publish-npm.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ jobs:
2929
with:
3030
node-version: '20'
3131
always-auth: true
32+
registry-url: 'https://registry.npmjs.org'
3233

3334
- name: Install dependencies
3435
run: |

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "0.7.5"
2+
".": "0.7.6"
33
}

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
## 0.7.6 (2025-12-09)
4+
5+
Full Changelog: [v0.7.5...v0.7.6](https://github.com/gitpod-io/gitpod-sdk-typescript/compare/v0.7.5...v0.7.6)
6+
37
## 0.7.5 (2025-12-09)
48

59
Full Changelog: [v0.7.4...v0.7.5](https://github.com/gitpod-io/gitpod-sdk-typescript/compare/v0.7.4...v0.7.5)

bin/publish-npm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,4 +56,4 @@ else
5656
fi
5757

5858
# Publish with the appropriate tag
59-
yarn publish --tag "$TAG"
59+
yarn publish --tag "$TAG" --provenance

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@gitpod/sdk",
3-
"version": "0.7.5",
3+
"version": "0.7.6",
44
"description": "The official TypeScript library for the Gitpod API",
55
"author": "Gitpod <dev-feedback@ona.com>",
66
"types": "dist/index.d.ts",

src/version.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export const VERSION = '0.7.5'; // x-release-please-version
1+
export const VERSION = '0.7.6'; // x-release-please-version

0 commit comments

Comments
 (0)