You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/documentation.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -133,19 +133,19 @@ The Docker Container will output the generated files at `/etc/connector`. Please
133
133
134
134
```bash
135
135
# get command documentation/help
136
-
docker run --rm ghcr.io/hasura/ndc-open-api-lambda:v1.6.1 update -h
136
+
docker run --rm ghcr.io/hasura/ndc-open-api-lambda:v1.7.0 update -h
137
137
138
138
# run the code generation (using env vars)
139
-
docker run --rm -v ./:/etc/connector/ -e NDC_OAS_DOCUMENT_URI=${url to open API document} ghcr.io/hasura/ndc-open-api-lambda:v1.6.1 update
139
+
docker run --rm -v ./:/etc/connector/ -e NDC_OAS_DOCUMENT_URI=${url to open API document} ghcr.io/hasura/ndc-open-api-lambda:v1.7.0 update
140
140
141
141
# run the code generation (using CLI flags)
142
-
docker run --rm -v ./:/etc/connector/ ghcr.io/hasura/ndc-open-api-lambda:v1.6.1 update --open-api ${url to open API document}
142
+
docker run --rm -v ./:/etc/connector/ ghcr.io/hasura/ndc-open-api-lambda:v1.7.0 update --open-api ${url to open API document}
143
143
144
144
# with baseUrl (using env vars)
145
-
docker run --rm -v ./:/etc/connector/ -e NDC_OAS_DOCUMENT_URI=${url to open API document} -e NDC_OAS_BASE_URL=http://demoapi.com/ ghcr.io/hasura/ndc-open-api-lambda:v1.6.1 update
145
+
docker run --rm -v ./:/etc/connector/ -e NDC_OAS_DOCUMENT_URI=${url to open API document} -e NDC_OAS_BASE_URL=http://demoapi.com/ ghcr.io/hasura/ndc-open-api-lambda:v1.7.0 update
146
146
147
147
# with baseUrl (using CLI flags)
148
-
docker run --rm -v ./:/etc/connector/ ghcr.io/hasura/ndc-open-api-lambda:v1.6.1 update --open-api ${url to open API document} --base-url http://demoapi.com/
148
+
docker run --rm -v ./:/etc/connector/ ghcr.io/hasura/ndc-open-api-lambda:v1.7.0 update --open-api ${url to open API document} --base-url http://demoapi.com/
Copy file name to clipboardExpand all lines: docs/release.md
+6-5Lines changed: 6 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,14 +8,15 @@ The NDC Open API Lambda Connector uses GitHub Releases for release management.
8
8
2. Add this tag value to the `version` field of the CLI [here](https://github.com/hasura/ndc-open-api-lambda/blob/23976ae2459c8dd0506c7d39385d5b5bd0d1e131/src/cli/index.ts#L8)
9
9
3. Add the tagged version of the Docker Image in the `update` command of the connector-metadata [here](https://github.com/hasura/ndc-open-api-lambda/blob/46018a4ed5497d21a2b6941d7a690131800e41cd/connector-definition/.hasura-connector/connector-metadata.yaml#L17) and [here](https://github.com/hasura/ndc-open-api-lambda/blob/46018a4ed5497d21a2b6941d7a690131800e41cd/connector-definition/.hasura-connector/connector-metadata.yaml#L21)
10
10
4. Update examples in the [README](./README.md)
11
-
5. Build a cross platform Docker Image using the command `docker buildx build --platform=linux/amd64,linux/arm64 -t ghcr.io/hasura/ndc-open-api-lambda:${git-tag} .`
12
-
6. Publish a Docker Image to GHCR with the name `ghcr.io/hasura/ndc-open-api-lambda` and the version tagged with the Git Tag using `docker push ${image:tag}`. More on [GHRC](https://docs.github.com/en/packages/working-with-a-github-packages-registry/working-with-the-container-registry)
13
-
7. Update [Changelog](./changelog.md)
14
-
8. Create .tgz file of `connector-definition` using the commands (MacOS)
11
+
5. Update version field in [package.json](https://github.com/hasura/ndc-open-api-lambda/blob/7474a1453b62455d5690936a874b7efc3fb4c2ca/package.json#L3)
12
+
6. Build a cross platform Docker Image using the command `docker buildx build --platform=linux/amd64,linux/arm64 -t ghcr.io/hasura/ndc-open-api-lambda:${git-tag} .`
13
+
7. Publish a Docker Image to GHCR with the name `ghcr.io/hasura/ndc-open-api-lambda` and the version tagged with the Git Tag using `docker push ${image:tag}`. More on [GHRC](https://docs.github.com/en/packages/working-with-a-github-packages-registry/working-with-the-container-registry)
14
+
8. Update [Changelog](./changelog.md)
15
+
9. Create .tgz file of `connector-definition` using the commands (MacOS)
15
16
16
17
```
17
18
$ cd ndc-open-api-lambda/connector-definition
18
19
$ tar -czf connector-definition.tgz .hasura-connector
19
20
```
20
21
21
-
9. Create a GitHub Release and add the .tgz file as an asset
22
+
10. Create a GitHub Release and add the .tgz file as an asset
0 commit comments