Skip to content

Commit

Permalink
workflow pull-request test
Browse files Browse the repository at this point in the history
  • Loading branch information
jodygarnett committed Jul 23, 2024
1 parent fdeee98 commit 8c80498
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Linux QA GitHub CI
name: build

on: [pull_request]

Expand Down
9 changes: 4 additions & 5 deletions .github/workflows/docs-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@ on:

jobs:
deploy:
runs-on: ubuntu-18.04
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Setup python for docs
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: '3.x'
cache: 'pip' # caching pip dependencies from requirements.txt below
Expand All @@ -20,12 +20,11 @@ jobs:
run: |
pip install -r requirements.txt
- name: builds docs
shell: bash
working-directory: docs
run: |
sphinx-build -b html -d _build/doctrees . _build/html
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
uses: peaceiris/actions-gh-pages@v4
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./docs/_build/html
7 changes: 3 additions & 4 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@ concurrency:

jobs:
build:
runs-on: [ubuntu-20.04]
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Setup python for docs
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: '3.x'
cache: 'pip' # caching pip dependencies from requirements.txt below
Expand All @@ -21,7 +21,6 @@ jobs:
run: |
pip install -r requirements.txt
- name: builds docs
shell: bash
working-directory: docs
run: |
sphinx-build -b html -d _build/doctrees . _build/html
4 changes: 4 additions & 0 deletions ReleaseNotes.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Mapfish Print 2 Release notes

## Release 2.3.2

Under development.

## Release 2.3.1

Security considerations:
Expand Down
2 changes: 1 addition & 1 deletion docs/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
sphinx-build
sphinx
myst-parser
5 changes: 5 additions & 0 deletions docs/upgrade.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
Upgrade
*******

Version 2.3.2
-------------

Under development.

Version 2.3.1
-------------

Expand Down

0 comments on commit 8c80498

Please sign in to comment.