Skip to content

Commit e7edb60

Browse files
SK-2040: fix common release workflow
1 parent 601a1d1 commit e7edb60

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

.github/workflows/common-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
- uses: actions/setup-node@v1
2020
with:
2121
node-version: '20.x'
22-
registry-url: "https://registry.npmjs.org"
22+
registry-url: ${{ (inputs.tag == 'beta' || inputs.tag == 'public') && 'https://registry.npmjs.org' || (inputs.tag == 'internal' && 'https://prekarilabs.jfrog.io/prekarilabs/api/npm/npm/') }}
2323

2424
- name: Install Packages
2525
run: npm install

src/utils/validations/index.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -987,7 +987,6 @@ export const validateReidentifyTextRequest = (request: ReidentifyTextRequest, op
987987
}
988988
};
989989

990-
991990
export const validateDeidentifyFileRequest = (deidentifyFileRequest: DeidentifyFileRequest, deidentifyFileOptions?: DeidentifyFileOptions, logLevel: LogLevel = LogLevel.ERROR) => {
992991
if (!deidentifyFileRequest) {
993992
throw new SkyflowError(SKYFLOW_ERROR_CODE.INVALID_DEIDENTIFY_FILE_REQUEST);

0 commit comments

Comments
 (0)