mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-04-02 13:45:10 -05:00
Merge pull request #646 from C0nsultant/ansible-CI-stability
Ansible - Fix GitHub actions
This commit is contained in:
commit
4ef4af452a
2
.github/workflows/ansible.yml
vendored
2
.github/workflows/ansible.yml
vendored
@ -48,6 +48,8 @@ jobs:
|
|||||||
molecule idempotence
|
molecule idempotence
|
||||||
molecule verify
|
molecule verify
|
||||||
working-directory: "${{ github.repository }}"
|
working-directory: "${{ github.repository }}"
|
||||||
|
env:
|
||||||
|
TARGET_GITHUB_SHA: "${{ github.event.pull_request.head.sha }}"
|
||||||
# # https://galaxy.ansible.com/docs/contributing/importing.html
|
# # https://galaxy.ansible.com/docs/contributing/importing.html
|
||||||
# release:
|
# release:
|
||||||
# runs-on: ubuntu-latest
|
# runs-on: ubuntu-latest
|
||||||
|
@ -2,15 +2,9 @@
|
|||||||
- 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: "{{ git_hash.stdout }}"
|
paperlessng_version: "{{ lookup('env', 'TARGET_GITHUB_SHA') | default('master', True) }}"
|
||||||
- name: update to newest paperless-ng release
|
- name: update to newest paperless-ng release
|
||||||
include_role:
|
include_role:
|
||||||
name: ansible
|
name: ansible
|
||||||
|
Loading…
x
Reference in New Issue
Block a user