Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[pull] master from sogno-platform:master #39

Merged
merged 2 commits into from
Feb 7, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 13 additions & 4 deletions .github/workflows/documentation.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ on:
branches:
- master

workflow_dispatch:

jobs:
generate-reference:
runs-on: ubuntu-latest
Expand Down Expand Up @@ -38,10 +40,16 @@ jobs:
path: ${{ github.workspace }}/reference
name: reference-cache
retention-days: 1

deploy:
runs-on: ubuntu-latest
needs: [generate-reference]

permissions:
pages: write
id-token: write
contents: write

steps:
- uses: actions/checkout@v4

Expand Down Expand Up @@ -81,7 +89,8 @@ jobs:
- name: Deploy page
uses: peaceiris/actions-gh-pages@v4
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./public
# keep_files: true
publish_branch: gh-pages
publish_branch: gh-pages
user_name: 'github-actions[bot]'
user_email: 'github-actions[bot]@users.noreply.github.com'
Loading