Skip to content

Update placi.md

Update placi.md #198

Workflow file for this run

name: ONE Record Github Pages deployer (development version)
on:
push:
branches:
- master
permissions:
contents: write
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: actions/setup-python@v4
with:
python-version: 3.10.6
- name: Install Dependencies
run: |
pip install mkdocs-material
pip install mike
- name: Setup Docs Deploy
run: |
git config --global user.name "IATA-Cargo"
git config --global user.email "[email protected]"
- name: Build Docs Website
run: |
make copy-assets
mike deploy --push development
working-directory: ./Documentation_website