diff --git a/.github/workflows/publish-pkg.yml b/.github/workflows/publish-pkg.yml index d0449e5..5bcb220 100644 --- a/.github/workflows/publish-pkg.yml +++ b/.github/workflows/publish-pkg.yml @@ -64,4 +64,4 @@ jobs: echo "No changes in ${{ matrix.package }}/package.json" fi env: - NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}} + NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}} diff --git a/packages/registry/package.json b/packages/registry/package.json index 8610cc0..14afd4d 100644 --- a/packages/registry/package.json +++ b/packages/registry/package.json @@ -1,6 +1,6 @@ { "name": "@serverless-devs/registry", - "version": "0.0.7", + "version": "0.0.8", "description": "request for serverless-devs", "main": "lib/index.js", "scripts": { diff --git a/packages/registry/src/actions/package.ts b/packages/registry/src/actions/package.ts index 5878308..30b9031 100644 --- a/packages/registry/src/actions/package.ts +++ b/packages/registry/src/actions/package.ts @@ -104,9 +104,9 @@ async function getUploadUrl(codeUri: string): Promise { const yamlObject = yaml.load(publishYaml) as Record; const errorMsg = `Publish.yaml illegal. - Application dev: https://docs.serverless-devs.com/serverless-devs/development-manual/readme - Component dev: https://docs.serverless-devs.com/serverless-devs/development-manual/component - Plugin dev: https://docs.serverless-devs.com/serverless-devs/development-manual/plugin + Application dev: https://manual.serverless-devs.com/dev-guide/application/ + Component dev: https://manual.serverless-devs.com/dev-guide/component/ + Plugin dev: https://manual.serverless-devs.com/dev-guide/plugin/ ` const ajv = new Ajv({ allErrors: true }); const validate = ajv.compile(publishSchema);