We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fc657e0 commit fe3351cCopy full SHA for fe3351c
.github/workflows/typedoc.yml
@@ -28,23 +28,3 @@ jobs:
28
29
- name: Run TypeDoc
30
run: pnpm typedoc
31
-
32
- - name: Update Gist
33
- uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1
34
- with:
35
- github-token: ${{ secrets.GIST_TOKEN }}
36
- script: |
37
- const fs = require('fs');
38
- const content = fs.readFileSync('./packages/thirdweb/typedoc/parsed.json', 'utf8');
39
- const gistId = '678fe1f331a01270bb002fee660f285d';
40
41
- await github.rest.gists.update({
42
- gist_id: gistId,
43
- files: {
44
- 'data.json': {
45
- content: content
46
- }
47
48
- });
49
50
- console.log(`Permalink: https://gist.githubusercontent.com/raw/${gistId}/data.json`);
0 commit comments