Skip to content

CI/CD: rename from deploy-ghpages to deploy #1

CI/CD: rename from deploy-ghpages to deploy

CI/CD: rename from deploy-ghpages to deploy #1

Workflow file for this run

name: Deploy to GitHub Pages
on:
push:
branches: [ master, web-integration ]
jobs:
build-docs:
uses: ./.github/workflows/docs.yml
with:
publish: true
build-webver:
uses: ./.github/workflows/webver.yml
with:
publish: true
deploy-ghpages:
needs: [build-docs, build-webver]
runs-on: ubuntu-latest
steps:
- name: Download doc artifact
uses: actions/download-artifact@v4
with:
name: doc
path: .
- name: Download web artifact
uses: actions/download-artifact@v4
with:
name: web
path: .
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v4
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: .
enable_jekyll: false
allow_empty_commit: false
force_orphan: true