Skip to content

Commit 6b703dd

Browse files
author
farhoud.m7
committed
Update Dockerfile to use Go 1.23-alpine and modify SDK workflow for @vhybzUX scope
1 parent b71b5ba commit 6b703dd

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/sdk.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -48,15 +48,15 @@ jobs:
4848
-i docs/swagger.json \
4949
-g typescript-axios \
5050
-o sdk/typescript \
51-
--additional-properties=npmName=@vhybzOS/api,npmVersion=$FULL_VERSION,supportsES6=true,useSingleRequestParameter=true,useSingleClass=true,public=true
51+
--additional-properties=npmName=@vhybzUX/api,npmVersion=$FULL_VERSION,supportsES6=true,useSingleRequestParameter=true,useSingleClass=true,public=true
5252
5353
- name: Configure npm
5454
run: |
5555
cd sdk/typescript
5656
# Set GitHub Packages authentication
5757
npm config set //npm.pkg.github.com/:_authToken ${{ secrets.GITHUB_TOKEN }}
58-
# Set GitHub Packages registry only for @vhybzOS scope
59-
npm config set @vhybzOS:registry https://npm.pkg.github.com
58+
# Set GitHub Packages registry only for @vhybzUX scope
59+
npm config set @vhybzUX:registry https://npm.pkg.github.com
6060
# Set default registry to npm
6161
npm config set registry https://registry.npmjs.org/
6262
@@ -66,7 +66,7 @@ jobs:
6666
npm install
6767
npm run build
6868
# Fix package.json
69-
npm pkg set repository.url="https://github.com/vhybzOS/api.git"
69+
npm pkg set repository.url="https://github.com/vhybzUX/api.git"
7070
npm pkg set repository.type="git"
7171
npm pkg set repository.directory="sdk/typescript"
7272

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Build stage
2-
FROM golang:1.21-alpine AS builder
2+
FROM golang:1.23-alpine AS builder
33

44
WORKDIR /app
55

0 commit comments

Comments
 (0)