ci: set github actions for deploy #2
This file contains 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: Build and Deploy | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- "docs/**" | |
- _quarto.yml | |
- docusaurus.config.js | |
- sidebars.js | |
pull_request: | |
paths: | |
- .github/workflows/main.yml | |
- "docs/**" | |
- _quarto.yml | |
- docusaurus.config.js | |
- sidebars.js | |
workflow_dispatch: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
build: | |
permissions: | |
contents: write | |
runs-on: ubuntu-latest | |
steps: | |
- name: Install devcontainer CLI | |
run: npm install -g @devcontainers/cli | |
- name: Start dev container | |
run: devcontainer up --workspace-folder . | |
- name: Start dev container | |
run: devcontainer up --workspace-folder . | |
- name: Quarto render | |
run: devcontainer exec --workspace-folder . quarto render | |
- name: Docusaurus build | |
run: npm run build | |
- name: Upload artifact | |
if: ${{ github.event_name == 'pull_request' }} | |
uses: actions/upload-artifact@v3 | |
with: | |
name: build | |
path: build | |
- name: Deploy to GitHub Pages | |
if: ${{ github.ref == 'refs/heads/main'}} | |
uses: peaceiris/actions-gh-pages@v3 | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
publish_dir: ./build | |
cname: rocker-project.org |