Compare commits
1 commit
95fd7c50b7
...
fad0b9d526
Author | SHA1 | Date | |
---|---|---|---|
|
fad0b9d526 |
|
@ -24,11 +24,15 @@ jobs:
|
||||||
run: |
|
run: |
|
||||||
apt-get update && apt-get install -y shellcheck
|
apt-get update && apt-get install -y shellcheck
|
||||||
|
|
||||||
- name: Run ShellCheck in Script Directories
|
- name: Find Shell Scripts
|
||||||
shell: bash
|
id: find-scripts
|
||||||
run: |
|
run: |
|
||||||
echo "Searching for shell scripts..."
|
echo "Searching for shell scripts..."
|
||||||
find . -name '*.sh' -print0 > shell-scripts.list
|
find . -name '*.sh' -print0 > shell-scripts.list
|
||||||
|
|
||||||
|
- name: Run ShellCheck in Script Directories
|
||||||
|
shell: bash
|
||||||
|
run: |
|
||||||
echo "Running ShellCheck in each script's directory..."
|
echo "Running ShellCheck in each script's directory..."
|
||||||
while IFS= read -r script; do
|
while IFS= read -r script; do
|
||||||
echo "Checking $script"
|
echo "Checking $script"
|
||||||
|
|
|
@ -1,9 +0,0 @@
|
||||||
./portainer/portainer-backup.sh
|
|
||||||
./immich/immich-backup.sh
|
|
||||||
./vaultwarden/vaultwarden-backup.sh
|
|
||||||
./forgejo/forgejo-backup.sh
|
|
||||||
./duplicati/duplicati-backup.sh
|
|
||||||
./logger.sh
|
|
||||||
./nextcloud/nextcloud-backup.sh
|
|
||||||
./cryptpad/cryptpad-backup.sh
|
|
||||||
./full-backup.sh
|
|
Loading…
Reference in a new issue