Skip to content

Fix broken publish workflow #38

Fix broken publish workflow

Fix broken publish workflow #38

Workflow file for this run

name: Compile documentation
on:
push:
branches:
- main
workflow_dispatch: {}
permissions:
contents: write
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
path: pages
- uses: actions/checkout@v4
with:
repository: Jelly-RDF/jelly-protobuf
path: proto
- id: proto_release
uses: pozetroninc/[email protected]
with:
owner: Jelly-RDF
repo: jelly-protobuf
excludes: prerelease, draft
- name: Generate Protobuf reference
run: |
docker run --rm -v $(pwd)/proto:/protos -v $(pwd)/pages/docs/specification:/out pseudomuto/protoc-gen-doc --doc_opt=markdown,reference.md
mkdir pages/docs/specification/proto || true
cp proto/*.proto pages/docs/specification/proto
- uses: actions/setup-python@v5
with:
python-version: '3.11'
cache: pip
cache-dependency-path: 'pages/requirements.txt'
- name: Install dependencies
working-directory: ./pages
run: pip install -r requirements.txt
- name: Deploy site
working-directory: ./pages
run: |
PROTO_TAG='${{ steps.proto_release.outputs.release }}'
V_MAJOR=`echo ${PROTO_TAG#v} | awk -F '.' '{print $1}'`
V_MINOR=`echo ${PROTO_TAG#v} | awk -F '.' '{print $2}'`
git fetch origin gh-pages --depth=1
git config user.name ci-bot
git config user.email [email protected]
mike deploy --push --update-aliases "${V_MAJOR}.${V_MINOR}" latest