Compare commits
18
Commits
0.2.1
..
2759e18fe6
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
2759e18fe6
|
||
|
|
c7a8e3c5ab | ||
|
|
3afee5bce7
|
||
|
|
73adc91eb3 | ||
|
|
cc6c1b1189
|
||
|
|
151bb67e3d | ||
|
|
b1e7bc5993
|
||
|
|
f34d963618 | ||
|
|
14325d5f4a
|
||
|
|
f322c8078a | ||
|
|
a2bf5cac96
|
||
|
|
2a514a3588 | ||
|
|
c64e2b85b2
|
||
|
|
b14f3ee512
|
||
|
|
a4b28d441b
|
||
|
|
1ec88f37fb
|
||
|
|
09c4173eaf
|
||
|
|
14f856fdea
|
@@ -12,9 +12,9 @@ jobs:
|
||||
runs-on:
|
||||
- ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v6.0.1
|
||||
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
|
||||
- name: Run ansible-lint
|
||||
uses: ansible/ansible-lint@v25.12.2
|
||||
uses: ansible/ansible-lint@5fac056c45595896c973fbde871f01f6cb14d74c # v26.4.0
|
||||
with:
|
||||
args: "--config-file .ansible-lint"
|
||||
setup_python: "true"
|
||||
|
||||
@@ -12,7 +12,7 @@ jobs:
|
||||
runs-on:
|
||||
- ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v6.0.1
|
||||
- uses: DavidAnson/markdownlint-cli2-action@v21.0.0
|
||||
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
|
||||
- uses: DavidAnson/markdownlint-cli2-action@30a0e04f1870d58f8d717450cc6134995f993c63 # v21.0.0
|
||||
with:
|
||||
globs: '**/*.md'
|
||||
|
||||
@@ -0,0 +1,22 @@
|
||||
name: Release Ansible Role
|
||||
|
||||
on:
|
||||
push:
|
||||
tags:
|
||||
- '**'
|
||||
workflow_dispatch: {}
|
||||
|
||||
jobs:
|
||||
release:
|
||||
name: Release Ansible Role
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Install Ansible Galaxy
|
||||
run: |
|
||||
apt update --yes
|
||||
apt install --yes ansible
|
||||
- env:
|
||||
ANSIBLE_GALAXY_TOKEN: ${{ secrets.ANSIBLE_GALAXY_TOKEN }}
|
||||
name: Update Ansible Role in Ansible Galaxy
|
||||
run: |
|
||||
ansible-galaxy role import --token=${ANSIBLE_GALAXY_TOKEN} volker-raschek ${GITHUB_REPOSITORY#*/}
|
||||
Reference in New Issue
Block a user