Skip to content

ros2go: update changelog #171

ros2go: update changelog

ros2go: update changelog #171

Workflow file for this run

# Simple workflow for deploying static content to GitHub Pages
name: Deploy Tianbot-Doc to Pages
on:
# Runs on pushes targeting the default branch
push:
branches: ["main"]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
# Single deploy job since we're just deploying
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: self-hosted
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
permissions:
contents: read
pages: write
id-token: write
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: actions/setup-node@v3
with:
node-version: 20
# cache: npm install -g pnpm
- run: npm install -g pnpm && pnpm install
- name: Build
run: npm run docs:build
# - uses: actions/configure-pages@v2
# - uses: actions/upload-pages-artifact@v2
# with:
# path: docs/.vitepress/dist
# - name: Deploy
# id: deployment
# uses: actions/deploy-pages@v2