Merge branch 'master' into dev

This commit is contained in:
jonaswinkler 2021-02-26 14:54:47 +01:00
commit 2159fefc87
3 changed files with 8 additions and 3 deletions

View File

@ -47,7 +47,6 @@ jobs:
molecule converge molecule converge
molecule idempotence molecule idempotence
molecule verify molecule verify
molecule destroy
working-directory: "${{ github.repository }}" working-directory: "${{ github.repository }}"
# # https://galaxy.ansible.com/docs/contributing/importing.html # # https://galaxy.ansible.com/docs/contributing/importing.html
# release: # release:

View File

@ -2,9 +2,15 @@
- name: update previous release to newest release - name: update previous release to newest release
hosts: all hosts: all
tasks: tasks:
- name: install git dependency
apt:
pkg: git
- name: obtain latest git hash in current tree
command: git rev-parse HEAD
register: git_hash
- name: set current github commit as version when available - name: set current github commit as version when available
set_fact: set_fact:
paperlessng_version: "{{ lookup('env', 'GITHUB_SHA') | default('master', True) }}" paperlessng_version: "{{ git_hash.stdout }}"
- name: update to newest paperless-ng release - name: update to newest paperless-ng release
include_role: include_role:
name: ansible name: ansible

View File

@ -25,7 +25,7 @@ This section describes the steps you need to take to start development on paperl
* Python 3.6. * Python 3.6.
* All dependencies listed in the :ref:`Bare metal route <setup-bare_metal>` * All dependencies listed in the :ref:`Bare metal route <setup-bare_metal>`
* redis. You can either install redis or use the included scritps/start-services.sh * redis. You can either install redis or use the included scripts/start-services.sh
to use docker to fire up a redis instance (and some other services such as tika, to use docker to fire up a redis instance (and some other services such as tika,
gotenberg and a postgresql server). gotenberg and a postgresql server).