-
Notifications
You must be signed in to change notification settings - Fork 2.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(taiko-client): changes based on
Pacaya
fork (#18746)
Co-authored-by: Daniel Wang <[email protected]> Co-authored-by: Anshu Jalan <[email protected]> Co-authored-by: AnshuJalan <[email protected]> Co-authored-by: Daniel Wang <[email protected]> Co-authored-by: dantaik <[email protected]> Co-authored-by: xiaodino <[email protected]> Co-authored-by: xiaodino <[email protected]> Co-authored-by: smtmfft <[email protected]> Co-authored-by: smtmfft <[email protected]> Co-authored-by: Daniel Wang <[email protected]> Co-authored-by: maskpp <[email protected]> Co-authored-by: jeff <[email protected]> Co-authored-by: Gavin Yu <[email protected]> Co-authored-by: YoGhurt111 <[email protected]> Co-authored-by: RogerLamTd <[email protected]> Co-authored-by: Jeffery Walsh <[email protected]> Co-authored-by: Gavin “yoghurt” Yu <[email protected]>
- Loading branch information
1 parent
3d85f7c
commit 02ae1cf
Showing
141 changed files
with
25,574 additions
and
2,720 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
name: "Taiko Client Soft Blocks Documentation" | ||
|
||
on: | ||
push: | ||
branches: [main] | ||
paths: | ||
- "packages/taiko-client/**" | ||
|
||
jobs: | ||
generate-and-deploy: | ||
runs-on: [arc-runner-set] | ||
permissions: | ||
contents: write | ||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v4 | ||
|
||
- name: Set up Go | ||
uses: actions/setup-go@v4 | ||
with: | ||
go-version: "1.23" | ||
|
||
- name: Install swaggo | ||
run: | | ||
export CGO_ENABLED=0 | ||
go install github.com/swaggo/swag/cmd/swag@latest | ||
- name: Generate Swagger documentation | ||
run: | | ||
export CGO_ENABLED=0 | ||
cd packages/taiko-client | ||
./scripts/gen_swagger_json.sh | ||
- name: Deploy to GitHub Pages | ||
uses: peaceiris/actions-gh-pages@v4 | ||
with: | ||
github_token: ${{ secrets.GITHUB_TOKEN }} | ||
publish_dir: packages/taiko-client/docs # Set this to where your `index.html` is located | ||
publish_branch: gh-pages | ||
destination_dir: preconf_blocks_api |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.