Skip to content

Commit

Permalink
version bump, changelog, automate docs
Browse files Browse the repository at this point in the history
  • Loading branch information
netzkollektiv committed Jul 23, 2024
1 parent 8c9475f commit 554de54
Show file tree
Hide file tree
Showing 5 changed files with 34 additions and 3 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Docs

on:
push:
tags:
- '*'

jobs:
deploy-docs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Deploy docs
run: |
pip install sphinx-rtd-theme
THEME_PATH=$(python3 -c "import sphinx_rtd_theme, os; print(os.path.dirname(sphinx_rtd_theme.__file__))")
docker run --rm -v ${PWD}/docs:/docs -v ${THEME_PATH}:/docs/source/_themes/sphinx_rtd_theme sphinxdoc/sphinx make html
echo "${{ secrets.DOCS_DEPLOY_PRIVKEY }}" > ./privkey
chmod 0600 ./privkey
# option -s needed to use sftp subsystem in OpenSSH 8.9
scp -si ./privkey -o StrictHostKeyChecking=accept-new -r ${PWD}/docs/build/html/* ${{ secrets.DOCS_DEPLOY_DST }}
shell: bash
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Release

on:
push:
tag:
tags:
- '*'

jobs:
Expand Down
5 changes: 5 additions & 0 deletions docs/source/changelog.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
Changelog
=========

v2.1.9
------

* behebt ein Problem, durch das der Zahlungsstatus nicht gesetzt wurde

v2.1.8
------

Expand Down
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
# The short X.Y version
version = u''
# The full version, including alpha/beta/rc tags
release = u'2.1.8'
release = u'2.1.9'

# -- General configuration ---------------------------------------------------

Expand Down
2 changes: 1 addition & 1 deletion src/Frontend/NetzkollektivEasyCredit/Bootstrap.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ public function getLabel()

public function getVersion()
{
return '2.1.8';
return '2.1.9';
}

public function getInfo()
Expand Down

0 comments on commit 554de54

Please sign in to comment.