Skip to content

Commit

Permalink
doc: remove automatic doc build
Browse files Browse the repository at this point in the history
allow only manual trigger for publishing doc

Signed-off-by: Robert Gałat <[email protected]>
  • Loading branch information
RobertGalatNordic committed Feb 15, 2024
1 parent f38c67b commit be7b40a
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/publish-documentation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@
name: Deploy static content to Pages

on:
push:
branches:
- main
paths:
- 'doc/**'
# push:
# branches:
# - main
# paths:
# - 'doc/**'

# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/tag-action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,12 @@ jobs:
steps:
- uses: actions/checkout@v3

- name: Install requirements
run: |
sudo apt-get update
sudo apt-get install default-jre graphviz -y
curl -sSL https://github.com/plantuml/plantuml/releases/download/v1.2023.13/plantuml-1.2023.13.jar --output /usr/local/bin/plantuml.jar
- name: Build documentation
run: cd doc; bash ./build_local.sh

Expand Down

0 comments on commit be7b40a

Please sign in to comment.