Merge pull request #988 from suketa/drop_duckdb_1.2.x #108
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Deploy RDoc to GitHub Pages | |
| on: | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| deploy: | |
| name: Build and Deploy RDoc | |
| runs-on: ubuntu-latest | |
| steps: | |
| # リポジトリをクローン | |
| - name: Checkout code | |
| uses: actions/checkout@v3 | |
| # Ruby をセットアップ | |
| - name: Set up Ruby | |
| uses: ruby/setup-ruby@v1 | |
| with: | |
| ruby-version: 3.4 | |
| # RDoc ドキュメントを生成 | |
| - name: Generate RDoc | |
| run: rdoc -o docs | |
| # GitHub Pages 用にデプロイ | |
| - name: Deploy to GitHub Pages | |
| uses: peaceiris/actions-gh-pages@v3 | |
| with: | |
| github_token: ${{ secrets.GITHUB_TOKEN }} | |
| publish_branch: gh-pages | |
| publish_dir: ./docs |