Skip to content

Fix CI issue for IO build #1792

Fix CI issue for IO build

Fix CI issue for IO build #1792

Workflow file for this run

# Copyright (C) 2025 Intel Corporation
# SPDX-License-Identifier: Apache-2.0
# CI for public repo only
name: Publish
permissions: {}
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build:
if: ${{ !contains(github.repository, 'intel-innersource') }}
runs-on: ubuntu-latest
permissions:
pull-requests: write
contents: write
steps:
- uses: actions/checkout@v3
- name: Build Online Document
run: |
git config --local --get remote.origin.url
cd docs/build_docs
bash build.sh latest
- name: Push to github
if: ${{ github.event_name == 'push' }}
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./build_tmp/gh-pages
publish_branch: gh-pages