You've already forked configurator
mirror of
https://github.com/armbian/configurator.git
synced 2026-01-06 10:36:02 -08:00
Add start file for test (#2)
This commit is contained in:
1
.github/workflows/debian.yml
vendored
1
.github/workflows/debian.yml
vendored
@@ -22,6 +22,7 @@ jobs:
|
||||
section: "default"
|
||||
priority: "optional"
|
||||
description: "Configurator"
|
||||
|
||||
secrets:
|
||||
GPG_PRIVATE_KEY: ${{ secrets.GPG_PRIVATE_KEY }}
|
||||
PASSPHRASE: ${{ secrets.PASSPHRASE }}
|
||||
|
||||
11
.github/workflows/lint.yml
vendored
11
.github/workflows/lint.yml
vendored
@@ -3,7 +3,6 @@ name: Lint scripts
|
||||
on:
|
||||
workflow_dispatch:
|
||||
pull_request:
|
||||
types: [review_requested, ready_for_review]
|
||||
|
||||
jobs:
|
||||
|
||||
@@ -23,11 +22,5 @@ jobs:
|
||||
- name: "Shellcheck lint error report in diff format"
|
||||
shell: bash {0}
|
||||
run: |
|
||||
(for file in $(find . -type f -exec grep -Iq . {} \; -print); do shellcheck --format=diff $file; done;) 2> /dev/null > lib.diff || true
|
||||
- name: Upload build artifacts
|
||||
uses: actions/upload-artifact@v2
|
||||
with:
|
||||
name: Shellcheck
|
||||
path: "*.diff"
|
||||
if-no-files-found: ignore
|
||||
retention-days: 14
|
||||
|
||||
for file in $(find . -type f -executable ! -path '*/.git*/*' -exec grep -Iq . {} \; -print); do shellcheck -x $file; done
|
||||
|
||||
2
configurator
Executable file
2
configurator
Executable file
@@ -0,0 +1,2 @@
|
||||
#!/bin/bash
|
||||
echo "Hello world"
|
||||
2
debian.conf
Normal file
2
debian.conf
Normal file
@@ -0,0 +1,2 @@
|
||||
LICENSE:/usr/share/doc/configurator/
|
||||
configurator:/usr/sbin/
|
||||
@@ -1 +0,0 @@
|
||||
LICENSE:/usr/share/doc/configurator/LICENSE
|
||||
Reference in New Issue
Block a user