Skip to content

RPC API compatibility test (#227) #148

RPC API compatibility test (#227)

RPC API compatibility test (#227) #148

Workflow file for this run

name: Build and publish forkdiff github-pages
on:
push:
branches:
- celo[0-9]+
permissions:
contents: read
jobs:
deploy:
permissions:
contents: write
concurrency: ci-${{ github.ref }}
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0 # make sure to fetch the old commit we diff against
- name: Build forkdiff
uses: "docker://protolambda/forkdiff:0.1.0"
with:
args: -repo=/github/workspace -fork=/github/workspace/fork.yaml -out=/github/workspace/index.html
- name: Build pages
run: |
mkdir -p tmp/pages
mv index.html tmp/pages/index.html
touch tmp/pages/.nojekyll
- name: Deploy
uses: JamesIves/github-pages-deploy-action@920cbb300dcd3f0568dbc42700c61e2fd9e6139c
with:
folder: tmp/pages
clean: true