Skip to content

Commit 80e1185

Browse files
authored
Merge pull request #10 from reload/doc-release
doc release #none
2 parents 87c84b9 + cdbefcd commit 80e1185

File tree

2 files changed

+16
-15
lines changed

2 files changed

+16
-15
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ jobs:
2929
RELEASE_BRANCHES: main
3030
- name: Create release
3131
uses: softprops/action-gh-release@v2
32+
if: ${{ (steps.version.outputs.new_tag != '') }}
3233
with:
3334
tag_name: ${{ steps.version.outputs.new_tag }}
3435
name: Release ${{ steps.version.outputs.new_tag }}

README.md

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ version: '2'
1010
plugins:
1111
- name: ts
1212
wasm:
13-
url: https://downloads.sqlc.dev/plugin/sqlc-gen-typescript_0.1.3.wasm
14-
sha256: 287df8f6cc06377d67ad5ba02c9e0f00c585509881434d15ea8bd9fc751a9368
13+
url: https://github.com/reload/sqlc-gen-typescript/releases/download/v0.0.6/plugin.wasm
14+
sha256: e9a87231ce3c27092cd219347a9942d3d1a8b22c4f2e881fa804104e31708d5c
1515
sql:
1616
- schema: "schema.sql"
1717
queries: "query.sql"
@@ -69,8 +69,8 @@ cloud:
6969
plugins:
7070
- name: ts
7171
wasm:
72-
url: https://downloads.sqlc.dev/plugin/sqlc-gen-typescript_0.1.3.wasm
73-
sha256: 287df8f6cc06377d67ad5ba02c9e0f00c585509881434d15ea8bd9fc751a9368
72+
url: https://github.com/reload/sqlc-gen-typescript/releases/download/v0.0.6/plugin.wasm
73+
sha256: e9a87231ce3c27092cd219347a9942d3d1a8b22c4f2e881fa804104e31708d5c
7474
sql:
7575
- engine: "postgresql"
7676
queries: "query.sql"
@@ -197,7 +197,7 @@ async function main() {
197197
// create an author
198198
const author = await createAuthor(client, {
199199
name: "Anders Hejlsberg",
200-
bio: "Original author of Turbo Pascal and co-creator of TypeScript",
200+
bio: "Original author of Turbo Pascal and co-creator of TypeScript",
201201
});
202202
if (author === null) {
203203
throw new Error("author not created");
@@ -256,8 +256,8 @@ version: '2'
256256
plugins:
257257
- name: ts
258258
wasm:
259-
url: https://downloads.sqlc.dev/plugin/sqlc-gen-typescript_0.1.3.wasm
260-
sha256: 287df8f6cc06377d67ad5ba02c9e0f00c585509881434d15ea8bd9fc751a9368
259+
url: https://github.com/reload/sqlc-gen-typescript/releases/download/v0.0.6/plugin.wasm
260+
sha256: e9a87231ce3c27092cd219347a9942d3d1a8b22c4f2e881fa804104e31708d5c
261261
sql:
262262
- schema: "schema.sql"
263263
queries: "query.sql"
@@ -277,8 +277,8 @@ version: '2'
277277
plugins:
278278
- name: ts
279279
wasm:
280-
url: https://downloads.sqlc.dev/plugin/sqlc-gen-typescript_0.1.3.wasm
281-
sha256: 287df8f6cc06377d67ad5ba02c9e0f00c585509881434d15ea8bd9fc751a9368
280+
url: https://github.com/reload/sqlc-gen-typescript/releases/download/v0.0.6/plugin.wasm
281+
sha256: e9a87231ce3c27092cd219347a9942d3d1a8b22c4f2e881fa804104e31708d5c
282282
sql:
283283
- schema: "schema.sql"
284284
queries: "query.sql"
@@ -299,8 +299,8 @@ version: '2'
299299
plugins:
300300
- name: ts
301301
wasm:
302-
url: https://downloads.sqlc.dev/plugin/sqlc-gen-typescript_0.1.3.wasm
303-
sha256: 287df8f6cc06377d67ad5ba02c9e0f00c585509881434d15ea8bd9fc751a9368
302+
url: https://github.com/reload/sqlc-gen-typescript/releases/download/v0.0.6/plugin.wasm
303+
sha256: e9a87231ce3c27092cd219347a9942d3d1a8b22c4f2e881fa804104e31708d5c
304304
sql:
305305
- schema: "schema.sql"
306306
queries: "query.sql"
@@ -320,8 +320,8 @@ version: '2'
320320
plugins:
321321
- name: ts
322322
wasm:
323-
url: https://downloads.sqlc.dev/plugin/sqlc-gen-typescript_0.1.3.wasm
324-
sha256: 287df8f6cc06377d67ad5ba02c9e0f00c585509881434d15ea8bd9fc751a9368
323+
url: https://github.com/reload/sqlc-gen-typescript/releases/download/v0.0.6/plugin.wasm
324+
sha256: e9a87231ce3c27092cd219347a9942d3d1a8b22c4f2e881fa804104e31708d5c
325325
sql:
326326
- schema: "schema.sql"
327327
queries: "query.sql"
@@ -340,7 +340,7 @@ If you want to build and test sqlc-gen-typescript locally, follow these steps:
340340

341341
1. Clone the repository and install dependencies:
342342
```
343-
git clone https://github.com/sqlc-dev/sqlc-gen-typescript.git
343+
git clone https://github.com/reload/sqlc-gen-typescript.git
344344
cd sqlc-gen-typescript
345345
npm install
346346
```
@@ -390,4 +390,4 @@ Check the `Makefile` for details.
390390
```
391391

392392
For more details on sqlc development, refer to the sqlc core development guide. This guide provides additional information on setting up and working with sqlc in general, which may be useful for contributors to this project.
393-
https://docs.sqlc.dev/en/latest/guides/development.html
393+
https://docs.sqlc.dev/en/latest/guides/development.html

0 commit comments

Comments
 (0)