mirror of
https://github.com/LOLBAS-Project/LOLBAS
synced 2025-07-27 04:32:24 +02:00
Adding GitHub action for automatically updating LOLBAS-Project.github.io
This commit is contained in:
15
.github/.yamllint
vendored
Normal file
15
.github/.yamllint
vendored
Normal file
@@ -0,0 +1,15 @@
|
||||
---
|
||||
extends: default
|
||||
yaml-files:
|
||||
- '*.yml'
|
||||
rules:
|
||||
new-line-at-end-of-file:
|
||||
level: warning
|
||||
trailing-spaces:
|
||||
level: warning
|
||||
line-length:
|
||||
level: warning
|
||||
new-lines:
|
||||
level: warning
|
||||
indentation:
|
||||
level: warning
|
35
.github/workflows/gh-pages.yml
vendored
Normal file
35
.github/workflows/gh-pages.yml
vendored
Normal file
@@ -0,0 +1,35 @@
|
||||
---
|
||||
name: Update LOLBAS-Project.github.io
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- master
|
||||
paths:
|
||||
- "yml/**.yml"
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
|
||||
- name: Change .yml to .md
|
||||
run: |
|
||||
for x in $(find yml/ -name '*.yml'); do mv "$x" "${x/%\.yml/.md}"; done
|
||||
mv yml/OSBinaries yml/Binaries
|
||||
mv yml/OSLibraries yml/Libraries
|
||||
mv yml/OSScripts yml/Scripts
|
||||
|
||||
- name: Deploy to LOLBAS-Project.github.io repo
|
||||
uses: peaceiris/actions-gh-pages@v3
|
||||
with:
|
||||
deploy_key: ${{ secrets.ACTIONS_DEPLOY_KEY }}
|
||||
external_repository: LOLBAS-Project/LOLBAS-Project.github.io
|
||||
publish_branch: master
|
||||
publish_dir: yml
|
||||
destination_dir: _lolbas
|
||||
enable_jekyll: true
|
||||
keep_files: false
|
||||
commit_message: "Applying update "
|
||||
user_name: 'github-actions[bot]'
|
||||
user_email: 'github-actions[bot]@users.noreply.github.com'
|
@@ -1,6 +1,13 @@
|
||||
---
|
||||
name: Yaml Lint
|
||||
on: [push, pull_request]
|
||||
name: YAML Lint
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- master
|
||||
pull_request:
|
||||
branches:
|
||||
- master
|
||||
|
||||
jobs:
|
||||
lintFiles:
|
||||
runs-on: ubuntu-latest
|
||||
@@ -9,4 +16,4 @@ jobs:
|
||||
- name: yaml-lint
|
||||
uses: ibiqlik/action-yamllint@v3
|
||||
with:
|
||||
config_file: .yamllint
|
||||
config_file: .github/.yamllint
|
Reference in New Issue
Block a user