Skip to content
This repository was archived by the owner on Aug 15, 2025. It is now read-only.

Commit 8a3c0f7

Browse files
committed
rename dir src to polyproto
1 parent c907188 commit 8a3c0f7

File tree

18 files changed

+4
-4
lines changed

18 files changed

+4
-4
lines changed

.github/workflows/deploy-openapi-spec.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,17 +21,17 @@ jobs:
2121
with:
2222
node-version: "lts/*"
2323
cache: "npm"
24-
cache-dependency-path: "./src/core/package-lock.json"
24+
cache-dependency-path: "./polyproto/core/package-lock.json"
2525
- name: Install TypeSpec and compile project
2626
run: |
27-
cd ./src/core/
27+
cd ./polyproto/core/
2828
npm install -g @typespec/compiler
2929
npm install
3030
tsp compile .
3131
- name: Commit OpenAPI specification to repository
3232
run: |
3333
tree -L 2
34-
mv ./src/core/tsp-output/schema/openapi.v1.0-beta.1.yaml ./build/core-openapi3.yaml
34+
mv ./polyproto/core/tsp-output/schema/openapi.v1.0-beta.1.yaml ./build/core-openapi3.yaml
3535
git add ./build/*
3636
git commit -m "[bot]update openapi3 schema" || true
3737
git push || true

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ You will need the following things installed on your computer:
3030
- `git`
3131
- `TypeSpec` - install it globally with `npm install -g @typespec/compiler`
3232

33-
1. Navigate to the `/src` directory.
33+
1. Navigate to the `/polyproto` directory.
3434
2. Select the project you want to compile. In this example, we are compiling the `core` project.
3535
Navigate to that directory.
3636
3. Run `tsp install` to install the dependencies.
File renamed without changes.

0 commit comments

Comments
 (0)