build(deps): bump github.com/ethereum/go-ethereum from 1.16.5 to 1.16.7 #69
This file contains hidden or 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
| name: Doc | |
| on: | |
| push: | |
| branches: [main] | |
| tags: ["v*"] | |
| pull_request: | |
| jobs: | |
| build: | |
| name: Build | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: oven-sh/setup-bun@v2 | |
| with: | |
| bun-version: latest | |
| - run: bun install | |
| working-directory: ./docs | |
| - run: bun run build | |
| working-directory: ./docs | |
| - name: upload Pages artifact | |
| if: github.ref_type == 'tag' | |
| uses: actions/upload-pages-artifact@v3 | |
| with: | |
| path: ./docs/out | |
| deploy: | |
| name: Deploy | |
| needs: build | |
| if: github.ref_type == 'tag' | |
| runs-on: ubuntu-latest | |
| permissions: | |
| pages: write | |
| id-token: write | |
| environment: | |
| name: github-pages | |
| url: ${{ steps.deployment.outputs.page_url }} | |
| steps: | |
| - name: deploy to GitHub pages | |
| id: deployment | |
| uses: actions/deploy-pages@v4 |