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

GH Actions: Fix a couple of issues #317

Merged
merged 1 commit into from
Nov 15, 2021
Merged
Show file tree
Hide file tree
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
8 changes: 5 additions & 3 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,12 +35,14 @@ on:
required: true
set_stable:
description: 'Stable build. Make this the default documented version.'
required: false
type: boolean
default: true
required: false
set_latest:
description: 'Latest build (but not the default version). If the build is both the Latest and the Stable/default, use `set_stable` as well.'
required: false
type: boolean
default: true
required: false

jobs:
deploy:
Expand Down Expand Up @@ -84,7 +86,7 @@ jobs:
path: gh-pages

- name: sync static files
if: ${{ github.event.inputs.set_stable }}
if: ${{ github.event.inputs.set_stable == 'true' }}
run: |
DOCS="${{ github.workspace }}/docs" \
PAGE="${{ github.workspace }}/gh-pages" \
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ on:
jobs:
deploy:
runs-on: ubuntu-18.04
timeout-minutes: 5
timeout-minutes: 10
steps:
- name: configure python
uses: actions/setup-python@v2
Expand Down