Thanks to visit codestin.com
Credit goes to github.com

Skip to content

build(deps): bump github.com/ethereum/go-ethereum from 1.16.5 to 1.16.7 #69

build(deps): bump github.com/ethereum/go-ethereum from 1.16.5 to 1.16.7

build(deps): bump github.com/ethereum/go-ethereum from 1.16.5 to 1.16.7 #69

Workflow file for this run

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